问题描述
- IOS开发怎么让UIAlertView不消失?
-
现在UIAlert上只有一个确定按钮 ,点击这个确定按钮 不让它消失 ,怎么处理?
解决方案
UIAlertView 实现自动消失
ios:UIAlertView自动消失
ios:UIAlertView自动消失
解决方案二:
继承,生成一个子类,自己来处理
@implementation MyAlertView
-(void)dismissWithClickedButtonIndex:(NSInteger)buttonIndex animated:(BOOL)animated {
if (buttonIndex should not dismiss the alert)
return;
[super dismissWithClickedButtonIndex:buttonIndex animated:animated];
}
@end
时间: 2024-09-05 21:00:45