Skip to content

Instantly share code, notes, and snippets.

@agiokas
Last active March 23, 2021 22:37
Show Gist options
  • Select an option

  • Save agiokas/65d3fc01d3cb27b31e6b5207c7b6a2e0 to your computer and use it in GitHub Desktop.

Select an option

Save agiokas/65d3fc01d3cb27b31e6b5207c7b6a2e0 to your computer and use it in GitHub Desktop.
protocol IViewControllerNavigator: UIViewController {
func navigate(data: Any, factory: ViewCοntrollerFactory)
}
extension IViewControllerNavigator {
func navigate(data: Any, factory: ViewCοntrollerFactory = MyViewControllerFactory()) {
guard let vmToPush = factory.create(for: data) else {
return
}
present(vmToPush, animated: true, completion: nil)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment