如何在调用[alert show]后立即显示警报视图,而不执行[alert show]调用下面的代码。
答案 0 :(得分:1)
您是说要等到执行下面的代码,直到用户解除警报视图?如果是这样,您应该实现UIAlertViewDelegate协议并处理' - alertView:clickedButtonAtIndex:'方法。
答案 1 :(得分:0)
如果我的理解是正确的,您可以使用UIAlertViewDelegate
- (void)willPresentAlertView:(UIAlertView *)alertView;
将代码移至[alert show]
以下,使其高于代理功能。