Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. @UIApplicationMain
  2. class AppDelegate: UIResponder, UIApplicationDelegate {
  3. var window: UIWindow?
  4. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool {
  5. // ...
  6.  
  7. window = UIWindow(bounds: UIScreen.main.bounds)
  8. window.rootViewController = PostNLRootViewController()
  9. window.makeKeyAndVisible()
  10. // ...
  11. return true
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement