what is ultimate root of visble UIView hierarchy tree?
Is that one of UIWindow object that can retrieve by [[UIApplication sharedApplication] windows]? is that true so for modal UIView?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Yes. Every App consists of MainWindow.xib file. That's the parent of all. If using newer versions of Xcode, A UIWindow will be declared at the start in the AppDelegate's didFinishWithLaunching method. Also, Modal UIViewController would be added to a Parent UIViewController which is again added on UIWindow |
|||
|
|