1 //禁止横屏显示
2 - (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
3 {
4 return UIInterfaceOrientationMaskPortrait;
5 }
1 //禁止横屏显示
2 - (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
3 {
4 return UIInterfaceOrientationMaskPortrait;
5 }