20 lines
438 B
Swift
20 lines
438 B
Swift
//
|
|
// AppDelegate.swift
|
|
// Demo iOS
|
|
//
|
|
// Created by Hannes Oud on 04.09.17.
|
|
// Copyright © 2017 IdeasOnCanvas GmbH. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
@UIApplicationMain
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
var window: UIWindow?
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
|
return true
|
|
}
|
|
}
|