Skip to content

Instantly share code, notes, and snippets.

@aronbalog
Last active July 26, 2019 19:24
Show Gist options
  • Save aronbalog/e73a1c22d022fec4f3dcf02e07535e53 to your computer and use it in GitHub Desktop.
Save aronbalog/e73a1c22d022fec4f3dcf02e07535e53 to your computer and use it in GitHub Desktop.
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