页面禁止横屏

//在AppDelegate中实现
//每个页面禁止横屏

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

{

    return UIInterfaceOrientationMaskPortrait;

}

 

你可能感兴趣的:(页面)