Question

- (IBAction)scanProduct:(id)sender
{   
   // for scanning product
    ZBarReaderViewController *reader = [[ZBarReaderViewController alloc] init];
    reader.readerDelegate = self;
    reader.supportedOrientationsMask = ZBarOrientationMaskAll;    
    ZBarImageScanner *scanner = reader.scanner;    
    [scanner setSymbology: ZBAR_I25
                               config: ZBAR_CFG_ENABLE
                                   to: 0];    
    [self presentModalViewController: readerqr
                                        animated: YES];  
}

when clicks on button readerqr appears with green rectangle.

Était-ce utile?

La solution

Looking at the documentation for ZBarReaderViewController, it looks like setting tracksSymbols to NO might do the trick.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top