Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个以扫描二维码开始的应用程序。
扫描后,如果我使用相机拍照,然后返回扫描视图,则扫描不起作用。
我不知道原因,问题仅在 IOS7 设备中,包括 iPad 和 iPhone。
我尝试 setSymbology 并调用[readerView start],但没有成功。
[readerView start]
请帮忙。
我发现IOS7在你拍照后改变了AVCaptureSession的视频模式。在调用之前使用此代码[readerView start]。
if([readerView.session canSetSessionPreset: AVCaptureSessionPreset640x480]) readerView.session.sessionPreset = AVCaptureSessionPreset640x480;