Initial Commit
This commit is contained in:
24
iOS (App)/AppDelegate.swift
Normal file
24
iOS (App)/AppDelegate.swift
Normal file
@@ -0,0 +1,24 @@
|
||||
//
|
||||
// AppDelegate.swift
|
||||
// iOS (App)
|
||||
//
|
||||
// Created by Ryan Breen on 1/11/23.
|
||||
//
|
||||
|
||||
import UIKit
|
||||
|
||||
@main
|
||||
class AppDelegate: UIResponder, UIApplicationDelegate {
|
||||
|
||||
var window: UIWindow?
|
||||
|
||||
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
||||
// Override point for customization after application launch.
|
||||
return true
|
||||
}
|
||||
|
||||
func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
|
||||
return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user