博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ZBarReaderView屏幕旋转问题
阅读量:5065 次
发布时间:2019-06-12

本文共 1276 字,大约阅读时间需要 4 分钟。

 

转载:http://42.96.197.72/ios-zbarreaderview-interface-orientation/

 

在iPad应用中,如果没有特殊情况,需要让应用支持所有屏幕方向。在iPad中使用ZBar扫描二维码时,需要在屏幕旋转时调整摄像头的方向,而ZBarReaderView并不会在屏幕旋转时自动调整方向,所以需要我们以某种方式进行控制。

如果使用的是ZBarReaderViewController,那么这件事情相对比较简单,使用以下方式进行设置即可支持所有屏幕方向。

ZBarReaderViewController 
*reader 
= 
[
[ZBarReaderViewController alloc
]init
];
reader.supportedOrientationsMask 
= ZBarOrientationMaskAll;

我在项目中使用的是ZBarReaderView,在网上找的一些方案都不能很好的解决问题,最终用以下方式解决了屏幕旋转问题,并且非常简洁。

ZBarReaderView中摄像头的默认方向为UIInterfaceOrientationPortrait,因此需要在初始化时调用该方法,以保证ZBarReaderView初始化时处于正确的方向。代码如下:

ZBarReaderView 
*readerView 
= 
[
[ZBarReaderView alloc
]init
];
[readerView 
    willRotateToInterfaceOrientation
:
        
[
[UIApplication sharedApplication
] statusBarOrientation
] 
    duration
:
        
[
[UIApplication sharedApplication
]statusBarOrientationAnimationDuration
]
];

此外,添加以下部分以保证ZBarReaderView可以正确处理屏幕旋转,代码如下:

- 
(
BOOL
)shouldAutorotateToInterfaceOrientation
:
(UIInterfaceOrientation
)toInterfaceOrientation
{
    
return 
YES;
}
//旋转屏幕
- 
(
void
)willAnimateRotationToInterfaceOrientation
:
(UIInterfaceOrientation
)toInterfaceOrientation
    duration
:
(NSTimeInterval
)duration
{
    
[readerView willRotateToInterfaceOrientation
:toInterfaceOrientation duration
:duration
];
}
更多

 

 

转载于:https://www.cnblogs.com/Camier-myNiuer/p/3472500.html

你可能感兴趣的文章
从下周开始就要采用网上记录值班日志了
查看>>
团队项目开发客户端——登录子系统的设计
查看>>
【AppScan心得】IBM Rational AppScan 无法记录登录序列
查看>>
[翻译] USING GIT IN XCODE [4] 在XCODE中使用GIT[4]
查看>>
简化通知中心的使用
查看>>
IO—》Properties类&序列化流与反序列化流
查看>>
html 简介
查看>>
session如何保存在专门的StateServer服务器中
查看>>
react展示数据
查看>>
测试计划
查看>>
选择器
查看>>
Mysql与Oracle 的对比
查看>>
idea的maven项目无法引入junit
查看>>
jquery实现限制textarea输入字数
查看>>
thinkphp5 csv格式导入导出(多数据处理)
查看>>
如何获取Android系统时间是24小时制还是12小时制
查看>>
fur168.com 改成5917电影
查看>>
PHP上传RAR压缩包并解压目录
查看>>
Codeforces 719B Anatoly and Cockroaches
查看>>
jenkins常用插件汇总
查看>>