UIAlertView关闭自动关闭功能

时间:2014-12-15 21:30:50

标签: ios objective-c uialertview dismiss

点击按钮“确定”警报自动关闭,如何防止

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" 
                                                    message:@"Message" 
                                                    delegate:self 
                                                    cancelButtonTitle:@"OK" 
                                                    otherButtonTitles:nil];
    [alert show];

我想要点击按钮“确定”而不是解除警报..如果(逻辑){not dismis} else {dismiss alert}

感谢名单

1 个答案:

答案 0 :(得分:0)

如果您想要这种行为,则需要创建自己的UI组件。 UIAlertView旨在显示一些基本信息,并为您提供一些按钮选项,一旦点击,关闭警报视图。