首页 > 移动平台 > 详细

IOS某个ViewController禁止自动旋转

时间:2014-08-15 19:19:09      阅读:494      评论:0      收藏:0      [点我收藏+]

IOS屏幕自动旋转,强制横竖屏方法:

bubuko.com,布布扣
- (BOOL)shouldAutorotate
{
    return YES;
}

- (NSUInteger)supportedInterfaceOrientations
{
    return (UIInterfaceOrientationMaskAll);// 修改这里 控制显示方向
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
bubuko.com,布布扣

IOS某个ViewController禁止自动旋转,布布扣,bubuko.com

IOS某个ViewController禁止自动旋转

原文:http://www.cnblogs.com/yangmx/p/3915328.html

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