我使用此波纹管代码为我的应用设置方向。但它只适用于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?我尝试在上面的函数上调试,如果我在模拟器ios 6和7上运行,则调用此函数,但是当你在模拟器ios 5上运行时,不会调用此函数。请给我任何建议。提前谢谢。