关于设置iOS横竖屏的两种方式(转载)

iPhone的横屏竖屏针对iOS系统版本分为两种开发方式: 一种是iOS 6之前的使用模式 一种是iOS6的新模式. 两者的区别还是蛮大的.

1:iOS6之前通常使用 shouldAutorotateToInterfaceOrientation 来单独控制某个UIViewController的方向,需要哪个viewController支持旋转,只需要重写shouldAutorotateToInterfaceOrientation方法。如下示例,设置以后,屏幕被旋转时只支持横屏转换:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation  
{  
   return UIInterfaceOrientationIsLandscape(interfaceOrientation);  
}  
 
 
iOS6之后使用如下两个方法控制自动旋转,分别是:  
- (BOOL)shouldAutorotate  
{  
    NSLog(@"让不让我旋转?");  
    return YES;  
}  
- (NSUInteger)supportedInterfaceOrientations {  
    NSLog(@"让我旋转哪些方向");  
    return UIInterfaceOrientationMaskAllButUpsideDown;  
}  
 
 
那么在自动旋转触发后,系统会自动调用另外两个方法:   
- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {  
    [super willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration];  
    NSLog(@"将要旋转了?");  
}  
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {  
    [super didRotateFromInterfaceOrientation:fromInterfaceOrientation];  
    NSLog(@"如果让我旋转,我已经旋转完了!");       
}  
 
 
2:让程序第一次启动时立刻显示横屏还是竖屏的方式
如果是iOS6之前,下面设置的设备支持方向可在应用里面再被修改
如果是iOS6以后,会做为硬性条件,也就是如果设置了以后,应用里面的代码也无法再使用这个方向
 
 
3:传说中的私有API实现切换ViewController强制横屏的方式
if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) {  
        [[UIDevice currentDevice] performSelector:@selector(setOrientation:)  
                                       withObject:(id)UIInterfaceOrientationLandscapeRight];  
    }  
 
4:使用xib进行界面设计时,改变xib的横竖显示方式

转载于:https://www.cnblogs.com/yuanjianguo2012/p/3920663.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值