Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,当用户单击警报视图中的按钮时,我需要关闭警报视图。我在我的应用程序中尝试过[alertView dismissWithClickedButtonIndex:-1 animated:NO];,但它不起作用。
[alertView dismissWithClickedButtonIndex:-1 animated:NO];
没做什么。
alertView:clickedButtonAtIndex:调用委托方法后,警报视图会自动关闭。
alertView:clickedButtonAtIndex:
来自UIAlertViewDelegate 协议参考。
是什么让您认为您需要解除警报?您是否正在展示许多相同的 UIAlertView?