iOS 中横竖屏切换的功能,在开发iOS app中总能遇到。以前看过几次,感觉简单,但是没有敲过代码实现,最近又碰到了,demo尝试了几种情况,这里就做下总结。
注意
blob.png
横屏两种情况是反的你知道吗?
UIInterfaceOrientationLandscapeRight与UIInterfaceOrientationMaskLandscapeRight都代表横屏,Home键在右侧的情况;UIDeviceOrientationLandscapeLeft则是Home键在左侧。
一般情形
所有界面都支持横竖屏切换
如果App的所有切面都要支持横竖屏的切换,那只需要勾选【General】 中的【Device Orientation】,选择希望支持的方向即可。
blob.png
图中支持竖屏和Home在右侧
如上设置完之后,当设备竖屏的时候,所有的界面都是竖屏显示的;而当设备横屏Home在右侧时,所有的界面会横屏显示。其他方向不支持,界面不会改变。
这里有个坑:
在iOS 9 之后横屏时,状态栏会消失。
解决方法:确保plist 中的【View controller-based status bar appearance】为YES,然后重写ViewController的 - (BOOL)prefersStatusBarHidden ,返回值是NO。
- (BOOL)prefersStatusBarHidden
{
return NO;
}
特殊情形
个别界面固定方向,其他所有界面都支持横竖屏切换
这种情况,在【General】-->【Device Orientation】中设置好支持的方向后,只需要在这些特殊的视图控制器中重写两个方法:
// 支持设备自动旋转
- (BOOL)shouldAutorotate
{
return YES;
}
/**
* 设置特殊的界面支持的方向,这里特殊界面只支持Home在右侧的情况
*/
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscapeRight;
}
个别界面支持横竖屏切换,其他所有界面都固定方向
可能大多数App会是这种需求,某些特殊界面只能横屏,如视频播放类App。
这里有两种处理方式:
方式一
在【General】-->【Device Orientation】中设置好需要支持的所有方向。然后使用一个基类控制器,在基类控制器中重写两个控制横竖屏的方法:
// 支持设备自动旋转
- (BOOL)shouldAutorotate
{
return YES;
}
// 支持竖屏显示
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
再然后,特殊的界面上再重写这俩方法,让其可以自动切换方向。
// 如果需要横屏的时候,一定要重写这个方法并返回NO
- (BOOL)prefersStatusBarHidden
{
return NO;
}
// 支持设备自动旋转
- (BOOL)shouldAutorotate
{
return YES;
}
// 支持横屏显示
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
// 如果该界面需要支持横竖屏切换
return UIInterfaceOrientationMaskLandscapeRight | UIInterfaceOrientationMaskPortrait;
// 如果该界面仅支持横屏
// return UIInterfaceOrientationMaskLandscapeRight;
}
方式二
用方式一的方法,还需要借助一个基类,所有的控制器都要继承这个基类,太麻烦?
另一种方式,是借助通知来控制界面的横竖屏切换。
还是整个App中大部分界面都是竖屏,某个界面可以横竖屏切换的情况。
首先,在【General】-->【Device Orientation】设置仅支持竖屏,like this:
blob.png
Device Orientation
然后在特殊的视图控制器里的ViewDidLoad中注册通知:
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deviceOrientationDidChange) name:UIDeviceOrientationDidChangeNotification object:nil];
通知方法的实现过程:
- (void)deviceOrientationDidChange
{
NSLog(@"deviceOrientationDidChange:%ld",(long)[UIDevice currentDevice].orientation);
if([UIDevice currentDevice].orientation == UIDeviceOrientationPortrait) {
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationPortrait];
[self orientationChange:NO];
//注意: UIDeviceOrientationLandscapeLeft 与 UIInterfaceOrientationLandscapeRight
} else if ([UIDevice currentDevice].orientation == UIDeviceOrientationLandscapeLeft) {
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight];
[self orientationChange:YES];
}
}
- (void)orientationChange:(BOOL)landscapeRight
{
if (landscapeRight) {
[UIView animateWithDuration:0.2f animations:^{
self.view.transform = CGAffineTransformMakeRotation(M_PI_2);
self.view.bounds = CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);
}];
} else {
[UIView animateWithDuration:0.2f animations:^{
self.view.transform = CGAffineTransformMakeRotation(0);
self.view.bounds = CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);
}];
}
}
// 用到的两个宏:
#define SCREEN_WIDTH ([UIScreen mainScreen].bounds.size.width)
#define SCREEN_HEIGHT ([UIScreen mainScreen].bounds.size.height)
最重要的一点:
需要重写如下方法,并且返回NO。
- (BOOL)shouldAutorotate
{
return NO;
}
这样,在设备出于横屏时,界面就会变成横屏,设备处于竖屏时,界面就会变成竖屏。
填坑
上面方式二,因为【General】-->【Device Orientation】因为只设置了竖屏,所以当横屏时,如果有键盘弹出,键盘是竖屏时的样式。
解决办法:在【General】-->【Device Orientation】中加上横屏时的方向。
如果VieController 是放在UINavigationController或者UITabBarController中,需要重写它们的方向控制方法。
// UINavigationController:
- (BOOL)shouldAutorotate
{
return [self.topViewController shouldAutorotate];
}
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
return [self.topViewController supportedInterfaceOrientations];
}
// UITabBarController:
- (BOOL)shouldAutorotate
{
return [self.selectedViewController shouldAutorotate];
}
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
{
return [self.selectedViewController supportedInterfaceOrientations];
}
如果想要点击某个按钮之后,强制将竖屏显示的界面变成横屏呢?
有人可能会想到这样写:
// 横屏
- (IBAction)landscapAction:(id)sender {
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight];
[self orientationChange:YES];
}
但是按照上面的写法,会导致返回到之前的界面时,视图方向错误,即使返回前执行如下代码:
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationPortrait];
[self orientationChange:NO];
也没有作用,下面是在开源工程中无意看到的写法:
// 横屏
- (IBAction)landscapAction:(id)sender {
[self interfaceOrientation:UIInterfaceOrientationLandscapeRight];
}
// 竖屏
- (IBAction)portraitAction:(id)sender {
[self interfaceOrientation:UIInterfaceOrientationPortrait];
}
- (void)interfaceOrientation:(UIInterfaceOrientation)orientation
{
if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) {
SEL selector = NSSelectorFromString(@"setOrientation:");
NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[UIDevice instanceMethodSignatureForSelector:selector]];
[invocation setSelector:selector];
[invocation setTarget:[UIDevice currentDevice]];
int val = orientation;
[invocation setArgument:&val atIndex:2];
[invocation invoke];
}
}
上面的方法会将设备的方向强制设置为某个方向,然后再监控设备方向改变的通知,即可实现横竖屏切换。
这里有一个用JS 和原生item 控制横竖屏切换的Demo。地址
这是效果图:
727768-9d329256ad34abb8.gif
横竖屏切换.gif
横竖屏切换总结就到这来了,Have Fun!
搜索CocoaChina微信公众号:CocoaChina 微信扫一扫
订阅每日移动开发及APP推广热点资讯
公众号:CocoaChina
我要投稿 收藏文章 分享到:
21
上一篇:Deep Linking技术,你真的知道吗
下一篇:基于SQLite3封装,一行代码实现增删改查
相关资讯
【iOS 开发】iOS 10.3 如何更换 app 图标 iOS端一次视频全屏需求的实现 iOS Security 苹果安全白皮书都讲了些啥? 走出 iOS 单元测试的困境 iOS 底层解析weak的实现原理(包含weak对象的初始化,引用,释放的分析) 从0到1思考与实现iOS-Widget iOS视图成像理论及优化 App开发者:苹果iOS10.3为何让我感到很兴奋 iOS App的加固保护原理 iOS中书写代码规范35条小建议
我来说两句
发表评论
您还没有登录!请登录或注册
所有评论(4)
折尽尘沙2016-08-23 18:03:37
mark
0 0 回复
漫漫代码路2016-07-31 15:38:41
mark
0 0 回复
wuxianray2016-07-22 18:10:47
gif里面是用H5写的啊
0 0 回复
cyz2562016-07-22 12:02:06
mark
1 0 回复
热门资讯
面试了 20 个初/中级 iOS 工程师之后(上)
面试了 20 个初/中级 iOS 工程师之后(上)
点击量12818
【收藏党】我的2017 iOS开发工具集
【收藏党】我的2017 iOS开发工具集
点击量10378
年收入130万以上,同行的你是怎么做到的?--2016年iOS个人开发者收入调查报告
年收入130万以上,同行的你是怎么做到的?--2016年iOS个人开发者收入调查报告
点击量8997
APP「登录注册模块」详解
APP「登录注册模块」详解
点击量5542
微信重磅 | 小程序开放个人申请
微信重磅 | 小程序开放个人申请
点击量4774
从0到1思考与实现iOS-Widget
从0到1思考与实现iOS-Widget
点击量4543
iOS视图成像理论及优化
iOS视图成像理论及优化
点击量4209
Stack Overflow 2017 开发者调查报告发布!
Stack Overflow 2017 开发者调查报告发布!
点击量3458
苹果开卖红色版iPhone7:中国市场售价6188元起
苹果开卖红色版iPhone7:中国市场售价6188元起
点击量3404
iOS App的加固保护原理
iOS App的加固保护原理
点击量3402
综合评论
haha 无聊的文章,无聊的人。
WLang评论了在程序员的世界里,这些词的意义大不同...
赞 很详细,推荐一个快速上架ios APP工具Appuploader,提升效率,可以在Windows环境上架。
只竹青评论了iOS-最全的App上架教程...
从例外一个导航控制器跳转回来就没有效果了
新力量评论了几句话实现导航栏透明渐变(iOS)...
前天遇到了这个问题,我的APP名称上有Free,所以被拒,去掉就可以了
freedom_luo评论了APP名称、截图和预览中包含价格信息(免费、打折)...
确认一下,代码使用的语言是Python吗
程序小白猿评论了图片风格转换--深度学习介绍...
第94个瞎几把写
guoranliaoran评论了超全!iOS 面试题汇总...
的确 创业是一个团队的事情 并非一个人单打独斗
christding评论了周鸿祎谈创业:很多程序员高智商 但我一看就知道他们...
所以,cocoaChina 也开始收录这么无聊的文章了。。。
魔灵幻梦评论了在程序员的世界里,这些词的意义大不同...
GL_RGBA 这个是什么啊。兄弟
godwar10评论了iPhone几种截屏的代码分享...
怎么生成Debug-universal,我编译后没有生成这个文件夹
张琦19960110评论了iOS SVGKit的使用
相关帖子
美食短视频app开发公司
共享单车app解决方案
关于gif图上传
CAMWorks Nesting 2013 SP0.1 for SolidWorks 2010-2013 Win32_64 2CD
APP开发制作
分享pdf怎么打开阅读的方法
oc写个小程序,在我和我几个朋友越狱的手机上用,需要开发者者账号吗
你的应用必须发表在卖方名称和公司名称反映零售商。。。。
CLOSE状态,是不是被封了