Files
nostash/iOS (App)/SceneDelegate.swift
2023-01-11 21:33:45 -05:00

19 lines
387 B
Swift

//
// SceneDelegate.swift
// iOS (App)
//
// Created by Ryan Breen on 1/11/23.
//
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 }
}
}