我在我的應用程序中有7個視圖控制器都處於肖像模式。現在我需要顯示支持兩個方向的另一個視圖(第8個視圖)。我已經實現了這三種方法,但屏幕在橫向模式下不旋轉。請建議我。單個視圖的方向問題iOS 6
- (BOOL)shouldAutorotate{
return YES;
}
- (NSUInteger)supportedInterfaceOrientations{
return UIInterfaceOrientationMaskAllButUpsideDown;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation{
return UIInterfaceOrientationMaskAllButUpsideDown;
}
在iOS6中使用導航控制器 –
中的視圖控制器將支持的方向放到'Info.plist'文件中,或者在應用程序委託類中實現'-application:supportedInterfaceOrientationsForWindow:'方法,並且一切都會正常工作。 – holex