Guest User

Untitled

a guest
Apr 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. //
  2. // AppDelegate.swift
  3. // Lottie
  4. //
  5. // Created by 辛忠翰 on 11/04/18.
  6. // Copyright © 2018 辛忠翰. All rights reserved.
  7. //
  8.  
  9. import UIKit
  10.  
  11. @UIApplicationMain
  12. class AppDelegate: UIResponder, UIApplicationDelegate {
  13.  
  14. var window: UIWindow?
  15.  
  16.  
  17. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
  18. window = UIWindow()
  19. window?.makeKeyAndVisible()
  20. window?.rootViewController = Example1ViewController()
  21. return true
  22. }
  23.  
  24. }
Add Comment
Please, Sign In to add comment