Created
June 7, 2019 07:52
-
-
Save tomasharkema/a4318a121e8f2a605cd05a2b296070a8 to your computer and use it in GitHub Desktop.
This file contains 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
@UIApplicationMain | |
class AppDelegate: UIResponder, UIApplicationDelegate { | |
var window: UIWindow? | |
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool { | |
// ... | |
window = UIWindow(bounds: UIScreen.main.bounds) | |
window.rootViewController = PostNLRootViewController() | |
window.makeKeyAndVisible() | |
// ... | |
return true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment