Skip to content

Instantly share code, notes, and snippets.

@Otbivnoe
Last active January 19, 2018 09:38
Show Gist options
  • Save Otbivnoe/f7d459dfdeb67bd899567fa90001cc1c to your computer and use it in GitHub Desktop.
Save Otbivnoe/f7d459dfdeb67bd899567fa90001cc1c to your computer and use it in GitHub Desktop.
extension UIViewController {
func openProfile(for user: User) {
let profileViewController = ProfileViewController(user: user)
present(profileViewController, animated: true, completion: nil)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment