| 12345678910111213141516171819 |
- //
- // AppDelegate.swift
- // TestSwift
- // Copyright (c) 2015 Damian Kołakowski. All rights reserved.
- //
- import Foundation
- import UIKit
- import Swifter
- @UIApplicationMain
- class AppDelegate: UIResponder, UIApplicationDelegate {
-
- var window: UIWindow?
-
- func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject : AnyObject]?) -> Bool {
- return true
- }
- }
|