Giter Club home page Giter Club logo

Comments (3)

Parkyprg avatar Parkyprg commented on June 10, 2024 1

Thank you for your reply. However, this is not helping too much.
Consider this scenario:
I have a UITabBarController and one of the UIViewControllers have this QRCode reader.
If I switch between controllers, I have to stop reading codes, otherwise, even if the page is not active, the codes are still scanned.

I got this working by destroying the component when the view will disappear.

But unfortunately I had to use a different framework, because this was build only for arm64 architecture and I needed for armv7 and armv7s too and there was no reply from your side for some time.

from qrcodereader.

VivekVithlani avatar VivekVithlani commented on June 10, 2024 1

Ok

from qrcodereader.

VivekVithlani avatar VivekVithlani commented on June 10, 2024

Thank you for using my framework.

You need to remove [qrCodeView startReading]; method from "M2" QRCodeReaderDelegate method.

i.e.
`- (void)getQRCodeData:(id)qRCodeData {
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"QR Code" message:qRCodeData preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"Close" style:UIAlertActionStyleDefault handler:nil];
[alertController addAction:cancel];

UIAlertAction *reScan = [UIAlertAction actionWithTitle:@"Rescan" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

[qrCodeView startReading]; // Remove this line

}];
[alertController addAction:reScan];
[self presentViewController:alertController animated:YES completion:nil];
}`

When the view disappears you need to put this code
qrCodeView = nil;

If you still facing any issue or any scenario please let me know,
Thank you.

from qrcodereader.

Related Issues (4)

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.