Skip to content

Instantly share code, notes, and snippets.

@mitnick78
Created June 4, 2018 06:52
Show Gist options
  • Save mitnick78/842fd8df2ea01597cecd17aa1da064fb to your computer and use it in GitHub Desktop.
Save mitnick78/842fd8df2ea01597cecd17aa1da064fb to your computer and use it in GitHub Desktop.
func toControllerView(id: Int) {
let detailController = self.storyboard?.instantiateViewController(withIdentifier: "DetailController") as! DetailController
detailController.id = id
self.present(detailController, animated: true, completion: nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment