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

定时消失的Alert弹窗

时间:2017-09-06 17:08:51      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:delegate   sage   div   需要   button   类方法   class   tor   void   

在公共类里面写如下两个类方法就可以了,只需要把第一个类方法公布出来:

代码如下:

#pragma mark --- 定时弹窗 ---
+ (void)showAlertViewWithTitle:(NSString *)title message:(NSString *)message afterDelay:(NSTimeInterval)delay {
    
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title message:message delegate:nil cancelButtonTitle:nil otherButtonTitles:nil];
    [alert show];
    [self performSelector:@selector(dimissAlert:) withObject:alert afterDelay:delay];
}

+ (void)dimissAlert:(UIAlertView *)alert {
    if(alert)     {
        [alert dismissWithClickedButtonIndex:[alert cancelButtonIndex] animated:YES];
    }
}

  

定时消失的Alert弹窗

标签:delegate   sage   div   需要   button   类方法   class   tor   void   

原文地址:http://www.cnblogs.com/Walking-Jin/p/7485726.html

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