Skip to content

Instantly share code, notes, and snippets.

@susieyy
Created January 14, 2017 02:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save susieyy/a7e9fcf1e90f571bcb81d44715134d62 to your computer and use it in GitHub Desktop.
Save susieyy/a7e9fcf1e90f571bcb81d44715134d62 to your computer and use it in GitHub Desktop.
#swtws
// URI /profiles/:id
final class ProfileViewController: UIViewController {
let userRealm: UserRealm
init(userId: Int) {
self.userRealm = try! Realm().objectForPrimaryKey(UserRealm.self, key: userId)!
super.init(nibName: nil, bundle: nil)
}
required init?(coder aDecoder: NSCoder) { fatalError("init(coder:) has not been implemented") }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment