首页 > 其他 > 详细

控制控制器只支持横/竖屏

时间:2015-10-17 22:00:56      阅读:243      评论:0      收藏:0      [点我收藏+]

重写控制器如下方法即可:

 1 - (NSUInteger)supportedInterfaceOrientations
 2 
 3 {
 4 
 5     /*
 6 
 7      UIInterfaceOrientationMaskPortrait
 8 
 9      UIInterfaceOrientationMaskLandscapeLeft
10 
11      UIInterfaceOrientationMaskLandscapeRight
12 
13      UIInterfaceOrientationMaskPortraitUpsideDown
14 
15      UIInterfaceOrientationMaskLandscape = (UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight),
16 
17      UIInterfaceOrientationMaskAll = (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight | UIInterfaceOrientationMaskPortraitUpsideDown),
18 
19      UIInterfaceOrientationMaskAllButUpsideDown = (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight),
20 
21      */
22 
23     return UIInterfaceOrientationMaskLandscape;
24 
25 }

 

控制控制器只支持横/竖屏

原文:http://www.cnblogs.com/Rinpe/p/4888335.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!