Last active
July 26, 2019 19:24
-
-
Save aronbalog/e73a1c22d022fec4f3dcf02e07535e53 to your computer and use it in GitHub Desktop.
https://medium.com/@aronbalog/1-ios-reinventing-view-controller-navigation-c2745b60bb6c Registering routable destination
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
import CoreNavigation | |
@UIApplicationMain | |
class AppDelegate: UIResponder, UIApplicationDelegate { | |
func application(_ application: UIApplication, willFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { | |
// register PersonProfile routable destination | |
PersonProfile.register() | |
// do your stuff here | |
return true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment