点击按钮“确定”警报自动关闭,如何防止
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title"
message:@"Message"
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
我想要点击按钮“确定”而不是解除警报..如果(逻辑){not dismis} else {dismiss alert}
感谢名单
答案 0 :(得分:0)
如果您想要这种行为,则需要创建自己的UI组件。 UIAlertView
旨在显示一些基本信息,并为您提供一些按钮选项,一旦点击,关闭警报视图。