码迷,mamicode.com
首页 > 其他好文 > 详细

禁止横屏(三个方法放到VC里面 纯代码)

时间:2016-08-10 16:08:34      阅读:352      评论:0      收藏:0      [点我收藏+]

标签:

//禁止屏幕旋转(在UIApplication中实现的代码)
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
    return UIInterfaceOrientationMaskPortrait;
}
 
 
//phone只支持正方向,

//此方法是ios6.0以前版本控制屏幕旋转的方法(6.0及以后已经被 弃用,,被supportedInterfaceOrientations,,shouldAutorotate两个方法所代替)
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
    return UIInterfaceOrientationIsPortrait(toInterfaceOrientation);
}
//6.0以后控制屏幕旋转的方法
- (BOOL)shouldAutorotate
{
    return NO;
}
-(NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskPortrait;
}
-(UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
    return UIInterfaceOrientationPortrait;
}
 

禁止横屏(三个方法放到VC里面 纯代码)

标签:

原文地址:http://www.cnblogs.com/xiao-flag/p/5756923.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!