ios 禁止横屏

在appDelegate.m 中实现

#pragma mark 禁止横屏

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

{

    return UIInterfaceOrientationMaskPortrait;

}

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