ios禁止横屏

//禁止横屏
-(NSUInteger)application:(UIApplication )application supportedInterfaceOrientationsForWindow:(UIWindow )window
{

return UIInterfaceOrientationMaskPortrait;

}

你可能感兴趣的:(ios,横屏,禁止横屏)