Skip to content

Instantly share code, notes, and snippets.

@caldofran
Last active November 20, 2019 14:16
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 caldofran/740f44b9d4ff180112894084021eb62a to your computer and use it in GitHub Desktop.
Save caldofran/740f44b9d4ff180112894084021eb62a to your computer and use it in GitHub Desktop.
Example of a very basic navigation on iOS
class ViewControllerA: UIViewController {
func presentViewControllerB() {
navigationController?.pushViewController(ViewControllerB(), animated: true)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment