要强制使用肖像,我需要使用以下代码段,并且我希望了解如果使用它,是否会使应用从appstore批准中被拒绝?
[[UIDevice currentDevice] performSelector:NSSelectorFromString(@"setOrientation:")
答案 0 :(得分:3)
为什么不使用这种方法? 在你的AppDelegate.m中:
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
return UIInterfaceOrientationMaskPortrait;
}
它强制纵向定位,比其他任何东西都安全得多。我在我的一个应用程序中使用它并且它已被Apple批准。