mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-01-13 12:50:34 +01:00
34 lines
855 B
Swift
34 lines
855 B
Swift
//
|
|
// Demo
|
|
// Copyright © 2020 John Rommel Estropia, Inc. All rights reserved.
|
|
|
|
import UIKit
|
|
|
|
// MARK: - AppDelegate
|
|
|
|
@UIApplicationMain
|
|
@objc final class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
// MARK: UIApplicationDelegate
|
|
|
|
@objc dynamic func application(
|
|
_ application: UIApplication,
|
|
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil
|
|
) -> Bool {
|
|
|
|
return true
|
|
}
|
|
|
|
@objc dynamic func application(
|
|
_ application: UIApplication,
|
|
configurationForConnecting connectingSceneSession: UISceneSession,
|
|
options: UIScene.ConnectionOptions
|
|
) -> UISceneConfiguration {
|
|
|
|
return UISceneConfiguration(
|
|
name: "Default Configuration",
|
|
sessionRole: connectingSceneSession.role
|
|
)
|
|
}
|
|
}
|