アラートビューで[OK]ボタンがクリックされたら、別のViewControllerにセグエしようとしています。これは私がこれまでに持っているものです。
- (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などをインポートする必要があるように感じます。
誰かが私が欠けていること、または間違っていることを教えてもらえますか?