如何禁止iphone的横屏
2016-12-08 本文已影响0人
江山一点红
方法一:
target--->general
方法二:
在AppDelegate加入下面的方法
- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
return UIInterfaceOrientationMaskPortrait;
}