On Thu, 21 Jul 2011 10:04:53 -0500, "Fluffy D. Bunny" <[email protected]> said: >Hi All, > >I have an application here that loads (pushes) a view during the users >navigation experience. This new view is split screen like so: > > >------------------------ >| CONTENT | >|_____________| >| | >| SUBVIEW | >|_____________| > >I need a new navigation controller to control the subview, but no matter how >I do it the controller takes over the entire screen, even through I have set >it's view to the subview.
You may be misunderstanding what a view controller is. You need a new view controller to push onto the main navigation controller's stack; that view controller's view should occupy the *whole* screen, i.e. both the content and the subview in your chart above. Now, you may *also* like to control the subview somehow, but you must *not* do it with a UINavigationController; that would be a misuse of this class. You should simply write your own code to manipulate the subview. m. -- matt neuburg, phd = [email protected], <http://www.apeth.net/matt/> A fool + a tool + an autorelease pool = cool! Programming iOS 4! http://www.apeth.net/matt/default.html#iosbook_______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
