로딩
요청 처리 중입니다...

UIKit Code Base SceneDelegate 설정

 UIKit Code Base SceneDelegate 설정

import UIKit class SceneDelegate: UIResponder, UIWindowSceneDelegate { var window: UIWindow? func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { guard let windowScene = (scene as?

UIWindowScene) else { return } window = UIWindow(windowScene: windowScene) window?.rootViewController = ViewController() window?.

makeKeyAndVisible() } }...