ios手机屏幕旋转控制

//全局控制禁止转屏

- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window{
return UIInterfaceOrientationMaskPortrait;
}````
 转自http://www.jianshu.com/p/436ad8963bfe

你可能感兴趣的:(ios手机屏幕旋转控制)