码迷,mamicode.com
首页 > 其他好文 > 详细

如何添加一个自动消失的UIAlertView

时间:2014-10-23 10:39:20      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   for   sp   div   on   log   

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

标签:style   blog   color   ar   for   sp   div   on   log   

原文地址:http://www.cnblogs.com/shaohuaios/p/4045172.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!