will like to know how to fix this error.
i will
QRReader = [ZBarReaderViewController new];
[self presentViewController:QRReader animated:YES completion:nil];
in customoverlay i have a button that will call
[helpButton addTarget:self action:@selector(goToTips) forControlEvents:UIControlEventTouchUpInside];
-(void)goToTips
{
[QRReader performSegueWithIdentifier:@"scannerToTips" sender:self];
}
but when i pressed the button i will get this error
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Receiver (<ZBarReaderViewController: 0x3c5350>) has no segue with identifier 'scannerToTips''