Files
nostr-connect/Nostr Connect/iOS (App)/SceneDelegate.swift
2023-11-28 08:10:12 +07:00

19 lines
385 B
Swift

//
// SceneDelegate.swift
// iOS (App)
//
// Created by Phong on 28/11/2023.
//
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 }
}
}