I cannot initialize CIDetector for reading QRCOde , It always remains nil. Here is my code :
let options = [CIDetectorAccuracy: CIDetectorAccuracyHigh]
self.detector = CIDetector(ofType: CIDetectorTypeQRCode, context: nil, options: options)
If I replace CIDetectorTypeQRCode
with CIDetectorTypeRectangle
it get initialized but I need to read QRCode
I am trying from last two days, Please help
Finally got that working:
Follow the steps: