首页 > 代码库 > 如何添加一个自动消失的UIAlertView
如何添加一个自动消失的UIAlertView
UIAlertView的消失其实是触发了一个dismiss事件,注意removefromSubview是行不通的,我们可以通过代码摸你点击了某个按钮来让UIAlertView自动消失.
通过设置一个定时器,可以设置多少秒之后自动消失.
代码实现:
- (void)popAlertView{ UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"温馨提示" message:@"恭喜,注册成功" delegate:self cancelButtonTitle:nil otherButtonTitles:@"取消", nil]; self.alertView = alertView; //设置定时器,1.5秒后自动消失. [NSTimer scheduledTimerWithTimeInterval:1.5f target:self selector:@selector(performDismiss:) userInfo:nil repeats:NO]; [alertView show];}-(void)performDismiss:(NSTimer *)timer{ [self.alertView dismissWithClickedButtonIndex:0 animated:NO];}
如何添加一个自动消失的UIAlertView
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。