The documentation
You should read the App and Environment Article from Apple instead of UIScene
documentation.
Explaination
As it says about the scenes:
Scene, Manage multiple instances of your app’s UI simultaneously, and direct resources to the appropriate instance of your UI.
We had only one scene back then before iOS 13, So the only thing we need to run ViewController
s simultaneously was multiple Window
s on top of each other. But now, each application can have multiple instances running at the same time! Each scene has its own state and it might be in the foreground while others are in the background or are suspended, while Window
was completely depended on the application itself.
Imagine we have 2 view controllers (consider there are no scenes) running on the left and right side of the device and then we need to show a banner. Using the old window method will show the banner on both of them! And if you need to pick one, you may end up finding the correct controller and presenting the banner on it, (I think all of us done this method before getting familiar with UIWindow
)
So apple introduced Scene
, a container for each separate instance of the app. So you can manage each one separately and each of them acts like a separate app. It has its own window
s and controller
s. But all of them are managed by a single object, UIApplication.shared
and it has a delegate
to handle general events (usually from outside of the app) and entire application life cycle.
UIScene
documentation, but I'd recommend to read Scenes, Supporting Multiple Windows, etc. What is major benefit? Multiple UI instances of your app = multiple windows for example. – Foldboat