GithubHelp home page GithubHelp logo

Comments (2)

mikebuss avatar mikebuss commented on July 26, 2024

Thanks @jaybowong. It looks like this exception was caused by nil being returned by deviceInputWithDevice:error: instead of a valid AVCaptureDeviceInput.

According to the documentation for this method, it looks like this could happen if the device is no longer available or in use:

This method returns an instance of AVCaptureDeviceInput that can be used to capture data from an AVCaptureDevice in an AVCaptureSession. This method attempts to open the device for capture, taking exclusive control of it if necessary. If the device cannot be opened because it is no longer available or because it is in use, for example, this method returns nil, and the optional outError parameter points to an NSError describing the problem.

It's possible the user granted camera access to your app, started scanning, then rejected permission, and attempted to start scanning again. Another possibility is they were using the camera in another app and quickly switched over to yours, not giving the camera enough time to unlock for use.

Either way, I think this issue highlights an area of MTBBarcodeScanner that can be improved: instead of silently (or loudly, in this case!) failing when errors occur in the AVFoundation methods, I think it should propagate those errors back to the startScanning method so the user of MTBBarcodeScanner can act on the error.

With my latest update, if the deviceInputWithDevice:error: fails with an error, that error will then be available in the two new scanning methods (Note an error parameter has been added):

- (void)startScanningWithError:(NSError **)error;
- (void)startScanningWithResultBlock:(void (^)(NSArray *codes))resultBlock error:(NSError **)error;

Since this changes the method signature, I'm going to release this at MTBBarcodeScanner v3.0.0. Thanks again!

from mtbbarcodescanner.

mikebuss avatar mikebuss commented on July 26, 2024

This is now in v3.0.0. Thanks!

from mtbbarcodescanner.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.