UIAlertのcancelButtonTitleを使用してサブビューを削除できますか?私がこれを書いているので:
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Done!"
message:[@"It's all ok!"]
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[self dismissModalViewControllerAnimated:YES];
しかし、このコードは、cancelButtonTitleを押す前にサブビューを削除します。どうすればよいですか?