我使用下面的代码为我的应用程序设置方向。但它只适用于 iOS 6 和 7,不能适用于 ios 5。
- (NSUInteger) application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
BOOL result = [completeTab getValue];
if (result) {
return UIInterfaceOrientationMaskAllButUpsideDown;
}
else {
return UIInterfaceOrientationMaskPortrait;
}
}
我如何支持 iOS 5?我尝试调试上述函数,如果我在 Simulator ios 6 和 7 上运行,则会调用此函数,但是当您在 Simulator ios 5 上运行时,不会调用此函数。请给我任何建议。提前致谢。