We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to read the following barcode
but it's just never detected. I've set my output in my RSCodeReaderViewController subclass to consider every type available like so
RSCodeReaderViewController
output.metadataObjectTypes = NSArray(array: output.availableMetadataObjectTypes) as [AnyObject]
and have my callback closure like so:
self.barcodesHandler = { [weak self] barcodes in guard let barcode = barcodes.first else { return } self?.delegate?.detectedBarcode(barcode: BarcodeNumber(undefinedCode: barcode.stringValue)) }
Am I missing something or that type of barcode is not supported?
Thanks in advance
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to read the following barcode
but it's just never detected.
I've set my output in my
RSCodeReaderViewController
subclass to consider every type available like soand have my callback closure like so:
Am I missing something or that type of barcode is not supported?
Thanks in advance
The text was updated successfully, but these errors were encountered: