18 lines
387 B
Swift
18 lines
387 B
Swift
//
|
|
// SceneDelegate.swift
|
|
// iOS (App)
|
|
//
|
|
// Created by David Idol on 12/4/21.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class SceneDelegate: UIResponder, UIWindowSceneDelegate {
|
|
|
|
var window: UIWindow?
|
|
|
|
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
|
|
guard let _ = (scene as? UIWindowScene) else { return }
|
|
}
|
|
|
|
}
|