ビューコントローラーAにUIAlertViewを割り当てた場合、ビューコントローラーBからの応答にアクセスできますか?
例えば
ビューコントローラーA
UIAlertView *alert;
alert = [[UIAlertView alloc] init];
[alert setTitle:@"Confirm"];
[alert setMessage:@"Do you pick Yes or No?"];
[alert setDelegate:self];
[alert addButtonWithTitle:@"Yes"];
[alert addButtonWithTitle:@"No"];
[alert show];
ビューコントローラー B
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (alertView == alert)
{
}
}
助けてくれてありがとう