Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. usage
  2.  
  3. ```swift
  4. class AppDelegate {
  5. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  6. let tabC = UITabBarController()
  7. let mC = MCoordinator()
  8.  
  9. coordinator = MainCoordinator(tabBarController: tabC, tabs: [mC])
  10. coordinator?.start()
  11. window?.rootViewController = tabC
  12. return true
  13. }
  14. }
  15. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement