When an app launches, UIApplicationMain creates the UIWindowScene which is used to instantiate the window. A view controller is then instantiated and assigned to the rootViewController property of the window.
In other words:
UIWindowScene -> window -> rootViewController
As far as I understand, there is usually one scene to which view controllers can be added (although you can create more than one scene).
But, when I see a storyboard, I see View Controller Scene per view controller. Are these scenes different from the window scene? If so, are these properties of UIWindowScene or the window?
In other words:
UIWindowScene -> window -> rootViewController
As far as I understand, there is usually one scene to which view controllers can be added (although you can create more than one scene).
But, when I see a storyboard, I see View Controller Scene per view controller. Are these scenes different from the window scene? If so, are these properties of UIWindowScene or the window?