From 825d3442c320c5567317109947c8d1267704645b Mon Sep 17 00:00:00 2001 From: erdgeist Date: Fri, 26 May 2023 00:06:06 +0200 Subject: Initial Commit --- CCCB Display/AppDelegate.swift | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 CCCB Display/AppDelegate.swift (limited to 'CCCB Display/AppDelegate.swift') 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 @@ +// +// AppDelegate.swift +// CCCB Display +// +// Created by Dirk Engling on 26.05.23. +// + +import UIKit + +@main +class AppDelegate: UIResponder, UIApplicationDelegate { + + + + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + // Override point for customization after application launch. + return true + } + + // MARK: UISceneSession Lifecycle + + func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { + // Called when a new scene session is being created. + // Use this method to select a configuration to create the new scene with. + return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) + } + + func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { + // Called when the user discards a scene session. + // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. + // Use this method to release any resources that were specific to the discarded scenes, as they will not return. + } + + +} + -- cgit v1.2.3