在警报视图中单击“确定”按钮后,我正在尝试转到另一个视图控制器。这就是我到目前为止所拥有的。
- (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 或其他东西。
谁能告诉我我错过了什么或做错了什么?