Recently I\'ve been wondering about the fact that that an iOS app only has one UIWindow.
It does not seem to be an issue to create another UIWindow
Starting with Rob's answer I played around a bit and would like to write down some notes for others trying to get information on this topic:
UIWindow. Just create one and makeKeyAndVisible. Done.UIWindow covers everything, even modals, popovers, etc. Brilliant!UIWindow is always portrait implicitly. It does no rotate. You'll have to add a controller as the new window's root controller and let that handle rotation. (Just like the main window)UIWindowLevelStatusBar to have it cover everything. Set its hidden property to NO.UIWindow can be used to bring views on the screen that float on top of everything. Without creating a dummy controller just to embed that in a UIPopoverController.