| 123456789101112131415161718 |
- //
- // 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: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
- return true
- }
- }
|