20 lines
507 B
Swift
20 lines
507 B
Swift
//
|
|
// AppDelegate.swift
|
|
// WatchOSExample
|
|
//
|
|
// Created by Yannick LORIOT on 29/10/15.
|
|
// Copyright © 2015 Yannick LORIOT. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
@UIApplicationMain
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
var window: UIWindow?
|
|
|
|
func application(_ application: UIApplication, willFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
|
|
// Override point for customization after application launch.
|
|
return true
|
|
}
|
|
}
|