【发布时间】:2013-10-06 08:55:29
【问题描述】:
我尝试了以下方法来强制景观在我的观点上:
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscape;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
return UIInterfaceOrientationLandscapeLeft;
}
- (BOOL)shouldAutorotate{
return YES;
}
都没有工作。请注意,我正在模拟器和 iPad 上进行测试。
谢谢
【问题讨论】:
标签: ios ios7 landscape viewcontroller