13 lines
292 B
Swift
13 lines
292 B
Swift
|
import UIKit
|
||
|
|
||
|
@UIApplicationMain
|
||
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
||
|
|
||
|
var window: UIWindow?
|
||
|
|
||
|
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
|