AppDelegate.swift 464 B

12345678910111213141516171819
  1. //
  2. // AppDelegate.swift
  3. // ReachabilityAppleTVSample
  4. //
  5. // Created by Stefan Schmitt on 10/12/15.
  6. // Copyright © 2015 Ashley Mills. All rights reserved.
  7. //
  8. import UIKit
  9. @UIApplicationMain
  10. class AppDelegate: UIResponder, UIApplicationDelegate {
  11. var window: UIWindow?
  12. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
  13. return true
  14. }
  15. }