如何在委托函数中关闭alertview - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex

时间:2012-09-11 00:30:03

标签: ios delegates uialertview dismiss

在我的应用中,当用户点击alertview中的按钮时,我需要关闭alertview。 我在我的应用中尝试了[alertView dismissWithClickedButtonIndex:-1 animated:NO];,但它不起作用。

1 个答案:

答案 0 :(得分:2)

什么都不做。

  

调用alertView:clickedButtonAtIndex:委托方法后,警报视图将自动关闭。

来自UIAlertViewDelegate Protocol Reference

是什么让你认为你需要解除警报?您是否可能会展示许多相同的UIAlertViews?