I am trying to segue to another view controller once the Ok button is clicked in an alert view. This is what I have so far.
- (IBAction)cancelScripting:(id)sender {
UIAlertView *cancelScriptingAlert = [[UIAlertView alloc]initWithTitle:@"Are You Sure" message:@"This action will cancel your observation" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Ok", nil];
[cancelScriptingAlert show];
}
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
if (buttonIndex == 1) {
[self performSegueWithIdentifier: @"CRHViewController" sender: self];
}
}
I dont know what I am doing when it comes to [self performSegueWithIdentifier: @"MySegue" sender: self]; The view controller I want to segue to is called CRHViewController. I feel like there is another method that I need or I need to import CRHViewController.h or something.
Can anyone tell me what I am missing, or doing wrong?