wip: support safari

This commit is contained in:
reya
2023-11-27 15:08:42 +07:00
parent 89675cc986
commit 6a604d0d58
43 changed files with 1709 additions and 9 deletions

View File

@@ -0,0 +1,18 @@
//
// SceneDelegate.swift
// iOS (App)
//
// Created by Phong on 27/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 }
}
}