我曾在 iPhone 和 iPad 上使用过 Zbar,它可以正常工作,没有任何问题,但在 iPad 的横向模式下却不行。当我在 iPad 中以横向模式显示 ZBarReaderViewController 时, View 会发生 90 度偏移,如下图所示,
包在 table 上的位置,图像是使用 iPad 以横向模式拍摄的。我希望包的图像不要移动。
我已经尝试将 supportedOrientationsMask 设置为
reader.supportedOrientationsMask = ZBarOrientationMask(UIInterfaceOrientationLandscapeLeft || UIInterfaceOrientationLandscapeRight);
但它没有以正确的方向显示,而是偏移了 90 度。有人可以帮我解决这个问题吗?非常感谢任何及时的帮助。谢谢。
Best Answer-推荐答案 strong>
我遇到了几乎相同的问题,我通过添加以下代码解决了这个问题。我的应用只支持横向:
UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
if (UIDeviceOrientationLandscapeLeft == orientation) {
//Rotate 90
reader.cameraViewTransform = CGAffineTransformMakeRotation (3*M_PI/2.0);
} else if (UIDeviceOrientationLandscapeRight == orientation) {
//Rotate 270
reader.cameraViewTransform = CGAffineTransformMakeRotation (M_PI/2.0);
}
关于ios - 用于 iPad 中横向方向的 ZBar,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/13394354/
|