user141302
user141302

Reputation:

two sub UIwindow in one UIWindow?

when we create iphone project, one UIWindow is created automatically.In that UIwindow UIViewcontroller's view is added on that window.but i want to create one parent UIWindow on which i have to add two sub window .In that sub windows i have add UIview controllers as normal...is it possible? any help please?

Upvotes: 1

Views: 716

Answers (1)

Thomas Müller
Thomas Müller

Reputation: 15625

You should be able to add any number of UIViews to your UIWindow, but not UIWindows.

Upvotes: 3

Related Questions