20 lines
678 B
Swift
20 lines
678 B
Swift
|
//
|
||
|
// https://mczachurski.dev
|
||
|
// Copyright © 2023 Marcin Czachurski and the repository contributors.
|
||
|
// Licensed under the Apache License 2.0.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
import SwiftUI
|
||
|
|
||
|
class AppDelegate: NSObject, UIApplicationDelegate {
|
||
|
func application(_ application: UIApplication,
|
||
|
configurationForConnecting connectingSceneSession: UISceneSession,
|
||
|
options: UIScene.ConnectionOptions
|
||
|
) -> UISceneConfiguration {
|
||
|
let sceneConfig: UISceneConfiguration = UISceneConfiguration(name: nil, sessionRole: connectingSceneSession.role)
|
||
|
sceneConfig.delegateClass = SceneDelegate.self
|
||
|
return sceneConfig
|
||
|
}
|
||
|
}
|