AppDelegate.swift 436 B

123456789101112131415161718
  1. //
  2. // AppDelegate.swift
  3. // TestSwift
  4. // Copyright (c) 2015 Damian Kołakowski. All rights reserved.
  5. //
  6. import Foundation
  7. import UIKit
  8. import Swifter
  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. }