使用UIDevice - setOrientation会让app被拒绝吗?

时间:2014-05-26 10:06:52

标签: ios ios7 appstore-approval uiinterfaceorientation

要强制使用肖像,我需要使用以下代码段,并且我希望了解如果使用它,是否会使应用从appstore批准中被拒绝?

[[UIDevice currentDevice] performSelector:NSSelectorFromString(@"setOrientation:")

1 个答案:

答案 0 :(得分:3)

为什么不使用这种方法? 在你的AppDelegate.m中:

- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{

        return UIInterfaceOrientationMaskPortrait;
}

它强制纵向定位,比其他任何东西都安全得多。我在我的一个应用程序中使用它并且它已被Apple批准。