Subview Orientation Different from Parent Orientation
My Parent View is in Portrait Mode, but i want my next View to be in Landscape Mode. But i'm unable to achieve this. For making the Next View in Landscape Mode i have to give support to my Parent View as Landscape too which i don't want. 开发者_开发百科Any Suggestions???? Thanks in Advance
In your next view, call
[UIApplication setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft animated:YES]
to set it in landscape orientation.
精彩评论