AppDelegate.swift 421 B

12345678910111213141516171819
  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: [NSObject : AnyObject]?) -> Bool {
  13. return true
  14. }
  15. }