【发布时间】:2012-10-02 13:14:05
【问题描述】:
此错误没有意义,因为首选方向 UIInterfaceOrientationLandscapeRight 由支持的方向返回
//iOS6
-(BOOL)shouldAutorotate
{
return NO;
}
-(NSUInteger)supportedInterfaceOrientations
{
return (UIInterfaceOrientationLandscapeRight | UIInterfaceOrientationLandscapeLeft);
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationLandscapeRight;
}
错误:
由于未捕获的异常而终止应用程序 'UIApplicationInvalidInterfaceOrientation',原因: 'preferredInterfaceOrientationForPresentation 必须返回一个受支持的 界面方向!'
【问题讨论】: