I am developing a QR code reader application using ZBar. I am using XCode 4.2

Here is my code where I am presenting another view modally after scanning the QR code successfully, and it doesn't work:

- (void) imagePickerController: (UIImagePickerController*) reader
 didFinishPickingMediaWithInfo: (NSDictionary*) info
{
    // ADD: get the decode results
    NSString *test3=@"test";

    id<NSFastEnumeration> results =
    [info objectForKey: ZBarReaderControllerResults];
    ZBarSymbol *symbol = nil;
    for(symbol in results){
    theBarcodeString = symbol.data;
    if ([theBarcodeString isEqualToString:test3]){
        nextView *next ;   
        next= [[nextView alloc] initWithNibName:nil bundle:nil];
        [self presentModalViewController:next animated:YES];
    }
    }
    // ADD: dismiss the controller (NB dismiss from the *reader*!)

    [reader dismissModalViewControllerAnimated: YES];   
}
link|improve this question

72% accept rate
Place an NSLog inside your if ([theBarcodeString isEqualToString:test3]){ for debugging. – 0x8badf00d Nov 25 '11 at 14:40
I am quite new to App development and I am not sure how to use NSlog but I know that it detects the condition because I tried to make a button.hide=YES and it does appear – user1051935 Nov 25 '11 at 14:47
Move the code outside of for loop. for(symbol in results){ break;} if(!symbol) return; theBarcodeString = symbol.data; if ([theBarcodeString isEqualToString:test3]){ nextView *next ; next= [[nextView alloc] initWithNibName:nil bundle:nil]; [self presentModalViewController:next animated:YES]; } – 0x8badf00d Nov 25 '11 at 14:54
I did that and still it does not redirect to the next View – user1051935 Nov 25 '11 at 15:03
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.