15 lines
356 B
Swift
15 lines
356 B
Swift
|
|
import UIKit
|
||
|
|
import SwiftUI
|
||
|
|
|
||
|
|
final class SceneDelegate: NSObject, UIWindowSceneDelegate {
|
||
|
|
var window: UIWindow?
|
||
|
|
|
||
|
|
func scene(
|
||
|
|
_ scene: UIScene,
|
||
|
|
willConnectTo session: UISceneSession,
|
||
|
|
options connectionOptions: UIScene.ConnectionOptions
|
||
|
|
) {
|
||
|
|
// SwiftUI lifecycle handles window setup via NASBackupApp.swift
|
||
|
|
}
|
||
|
|
}
|