只是一个快速的问题。假设我已将我的应用程序更新到 iOS6 并更改了 iOS5 的 shouldAutoRotate 方法,如下所示:
- (BOOL) shouldAutorotate
{
return YES;
}
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscapeRight;
}
如果我仍然支持 iOS5,如果应用程序正在运行 iOS5 的设备上运行,我是否需要检查 iOS 版本,然后还包括旧的 iOS5 方法(即 shouldAutoRotateToInterfaceOrientation)?
谢谢 !