ios

    Scene delegate? + App Delegate

    Scene delegate? + App Delegate

    iOS 13부터는 SceneDelegate 등장으로 window 변수가 SceneDelegate로 이동 구조의 변화도 있음, SceneDelegate 설명 iOS 12 이하는 앱에 하나의 window를 가짐(multi window를 사용하지 않는다.) iOS 12 이하에서는 AppDelegate에 window: UIWindow? 변수가 있다. iOS 12 이하에서는 앱에 하나의 window를 가진다. (Multi window를 사용하지 않는다.) iOS 13 이상에서는 AppDelegate의 UILifecycle이 SceneDelegate로 이동 iOS 13 이상에서는 여러개의 window를 가질 수 있다 -> Multi window 사용 What is SceneDelegate? iOS 13이상 버전에서..