【发布时间】:2012-10-09 16:47:05
【问题描述】:
只是一个简单的问题。假设我已将我的应用程序更新到 iOS6 并更改了 iOS5 的 shouldAutoRotate 方法,如下所示:
- (BOOL) shouldAutorotate
{
return YES;
}
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscapeRight;
}
如果我仍然支持 iOS5,如果应用在运行 iOS5 的设备上运行,我是否需要检查 iOS 版本,然后还包括旧的 iOS5 方法(即 shouldAutoRotateToInterfaceOrientation)?
谢谢!
【问题讨论】:
标签: iphone ipad ios5 rotation ios6