I was working on an iPad application with about 15 controllers. Some of the view controllers are displayed in full screen mode, while others are built into other view controllers (I think the split view controller).
The iPhone is very easy to navigate. Even if you have a ton of controllers, you use one of the Apple root controllers (tab or navigation). Navigation is done by the root view controllers, and you can pretty much focus on your views.
On the ipad, controllers with a shared view and tabs are not always useful, and they don’t cut it for the application I'm working on. I created separate navigation controller objects to handle hidden / displayed view controllers based on notifications that are published when the user performs an action.
Anyone else have experience solving the navigation problem on the iPad?
source
share