iosiphonemulti-window

ios- create multiple window app


How to create an application to support multiple windows. So that user can create new or close window simultaneously in the same app like we can see in browsers.

Any suggestion is appreciated.


Solution

  • You don't want to use multiple windows. The app could have multiple windows but this wouldn't give you the effect you want (or would be an abusive way of creating it).

    Instead, what you want is a container view controller which manages, in a custom way, a number of child view controllers. Think about how a tab view controller works - you want the same thing, just presented in a different way.

    Taks a look at HGPageScrollView for inspiration and reuse.