QRCodeReaderViewController icon indicating copy to clipboard operation
QRCodeReaderViewController copied to clipboard

Simple QRCode reader for iOS 7 and over

Results 20 QRCodeReaderViewController issues
Sort by recently updated
recently updated
newest added

Hello, thanks for such great code! I'm having troubles detecting QR code that are not in black and white - I paid attention to have contrasting colours though - and...

Hi , Instead of dismisViewController in didScanresult method I need to use UIStoryboard *storyboard= [UIStoryboard storyboardWithName:@"Main" bundle:nil]; UIViewController *main = [storyboard instantiateViewControllerWithIdentifier:@"MainViewController"]; [self presentViewController:main animated:YES completion:nil]; But it is not...

Please change UIDeviceOrientationDidChangeNotification to UIApplicationDidChangeStatusBarOrientationNotification in QRCodeReaderViewController line 105 now it is not correctly working on iPad

Hey there... I am using QRCodeReaderViewController in iOS 8 app and I took your sample code as-is to show the QR code reader. But I am getting an exception: ```...

Yannick, I has one problem and make some adjusts (workaround). Please, see. The _metadataObjectTypes is always nil. QRCodeReader.m ``` - (id)init { if ((self = [super init])) { _metadataObjectTypes =...

I test some iOS versions and some iPhones , I find iPhone5s with iOS 9.3.5 and 10.0.2,the QR can't run , i found AVCaptureDeviceInput is nil in those cases, help!!!!

Add cancel block for use case where you use a block completion instead of delegate.

Hi, I'm having trouble reading in VIN bar codes which I believe are of type: AVMetadataObjectTypeEAN13Code. Have you had any issues with bar code scanning? Thanks.

Both delegate methods fire just fine when I present it as modal like the example: ``` if QRCodeReader.isAvailable() { let reader: QRCodeReader = QRCodeReader(metadataObjectTypes: [AVMetadataObjectTypeQRCode]) let vc: QRCodeReaderViewController = QRCodeReaderViewController(cancelButtonTitle:...