I'm confused about independent view controllers. I need an independent view so that I can control the rotations separate from my other view (View A) and parent view (Splashview). Can this be done by using a button on View A or does there have to be a tab bar. Right now I just have a subclass of a UIViewController and I can't control the rotation separately from the other views.

link|improve this question

I don't understand what you mean by rotating. Do you mean pusing/flipping other controllers into the main view? usually you navigate with one view controller + buttons for each screen, or you navigate using tabs. You can also embed uiviewcontrollers, but that complicate things. Your choice. – Jano Nov 7 '11 at 23:32
Please add some code or a sketch of the hierarchy, it's not clear what exactly you're trying to accomplish – Robin Nov 7 '11 at 23:34
@Jano I'm having trouble with the shouldautorotatetointerfaceorientation method. When I try to return YES on a subview (View B), the subview will not rotate because only portrait is passed on the parentview. Is there a way to make View B independent of all other views so when I return YES it will rotate? – Davis G. Nov 7 '11 at 23:37
With one view controller, returning YES is all you need to rotate all views. For special cases, refer to Why won't my UIViewController rotate with the device?. AFAIK you can't rotate just part of the interface until you do it manually with core graphics (which is quite possible). – Jano Nov 7 '11 at 23:52
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.