如何禁止iphone的横屏

方法一:

target--->general

方法二:

在AppDelegate加入下面的方法

- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window

{

return UIInterfaceOrientationMaskPortrait;

}

你可能感兴趣的:(如何禁止iphone的横屏)