我无法初始化CIDetector来读取QRCOde,它始终保持为零。这是我的代码:

let options = [CIDetectorAccuracy: CIDetectorAccuracyHigh]
            self.detector =  CIDetector(ofType: CIDetectorTypeQRCode, context: nil, options: options)


如果将CIDetectorTypeQRCode替换为CIDetectorTypeRectangle,它将被初始化,但我需要阅读QRCode

我从最近两天开始尝试,请帮助

最佳答案

终于成功了:

按照步骤:


选择XcodeProject
选择目标
选择构建设置
确保ValidArchitecture具有arm64或将其替换为(arm64 armv7 armv7s)

关于ios - CIDetctor始终保持为零,无法读取QRCode,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35885137/

10-13 06:15