diff options
author | erdgeist <erdgeist@erdgeist.org> | 2023-05-26 00:06:06 +0200 |
---|---|---|
committer | erdgeist <erdgeist@erdgeist.org> | 2023-05-26 00:06:06 +0200 |
commit | 825d3442c320c5567317109947c8d1267704645b (patch) | |
tree | f803c4c3524b1633cb6fef978d1e6c560fb2b1bb /CCCB Display/AppDelegate.swift |
Initial Commit
Diffstat (limited to 'CCCB Display/AppDelegate.swift')
-rw-r--r-- | CCCB Display/AppDelegate.swift | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/CCCB Display/AppDelegate.swift b/CCCB Display/AppDelegate.swift new file mode 100644 index 0000000..8639c64 --- /dev/null +++ b/CCCB Display/AppDelegate.swift | |||
@@ -0,0 +1,36 @@ | |||
1 | // | ||
2 | // AppDelegate.swift | ||
3 | // CCCB Display | ||
4 | // | ||
5 | // Created by Dirk Engling on 26.05.23. | ||
6 | // | ||
7 | |||
8 | import UIKit | ||
9 | |||
10 | @main | ||
11 | class AppDelegate: UIResponder, UIApplicationDelegate { | ||
12 | |||
13 | |||
14 | |||
15 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { | ||
16 | // Override point for customization after application launch. | ||
17 | return true | ||
18 | } | ||
19 | |||
20 | // MARK: UISceneSession Lifecycle | ||
21 | |||
22 | func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { | ||
23 | // Called when a new scene session is being created. | ||
24 | // Use this method to select a configuration to create the new scene with. | ||
25 | return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) | ||
26 | } | ||
27 | |||
28 | func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) { | ||
29 | // Called when the user discards a scene session. | ||
30 | // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. | ||
31 | // Use this method to release any resources that were specific to the discarded scenes, as they will not return. | ||
32 | } | ||
33 | |||
34 | |||
35 | } | ||
36 | |||