@interface BarCodeViewController (Private) - (void)initReaderView; @end @implementation BarCodeViewController @synthesize readerView; - (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex{ if (buttonIndex!=0) { HandInputViewController *handInputViewController = [[HandInputViewController alloc] initWithNibName:@"HandInputViewController" bundle:nil]; handInputViewController.delegate = self; [self presentModalViewController:handInputViewController animated:YES]; [handInputViewController release]; } } @end