+ (NSString *)readQRCodeImage:(UIImage *)imagePicked {
CIImage *qrcodeImage = [CIImage imageWithCGImage:imagePicked.CGImage];
CIContext *qrcodeContext = [CIContext contextWithOptions:nil];
// detector
CIDetector *qrcodeDetector = [CIDetector detectorOfType:CIDetectorTypeQRCode context:qrcodeContext options:@{CIDetectorAccuracy:CIDetectorAccuracyHigh}];
// read features
NSArray *qrcodeFeatures = [qrcodeDetector featuresInImage:qrcodeImage];
//
NSString *qrcodeResultString = nil;
if (qrcodeFeatures && qrcodeFeatures.count > 0) {
for (CIQRCodeFeature *qrcodeFeature in qrcodeFeatures) {
if (qrcodeResultString && qrcodeResultString.length > 0) {
break;
}
qrcodeResultString = qrcodeFeature.messageString;
}
}
NSLog(@"%@",qrcodeResultString);
return qrcodeResultString;
}
I want to read the image features such as the picture in iOS10.
The code work normal in iOS8 and iOS9.
I think they did a modification to the CIFeautre class. Now you need to convert it to the subclass CIQRCodeFeature.
How I did this in Swift: