一旦在警报视图中单击“确定”按钮,我将尝试转到另一个视图控制器。这是我到目前为止所做的。
- (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];
}
}
当谈到[self performSegueWithIdentifier:@“MySegue”sender:self]时,我不知道我在做什么。我想要的视图控制器叫做CRHViewController。我觉得我需要另外一种方法,或者我需要导入CRHViewController.h或其他东西。
有谁能告诉我我错过了什么,或做错了什么?