博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
定时消失的Alert弹窗
阅读量:5273 次
发布时间:2019-06-14

本文共 634 字,大约阅读时间需要 2 分钟。

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

代码如下:

#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];    }}

  

转载于:https://www.cnblogs.com/Walking-Jin/p/7485726.html

你可能感兴趣的文章
[na]office 2010 2013卸载工具
查看>>
OpenFlow Switch
查看>>
Redis笔记-Sentinel哨兵模式
查看>>
java 多线程
查看>>
分布式Redis深度历险-Sentinel
查看>>
用移动硬盘装windows 7时 遇到 A required CD/DVD device driver is missing 的问题
查看>>
leetcode 51 N-Queens & 52 N-Queens II ----- java
查看>>
图片上传
查看>>
死锁及oracle死锁--转载
查看>>
Android设置监听
查看>>
findByExample(Object exampleEntity)方法得到的List判断是否为空,不可用(lis != null)
查看>>
pip下载保存Python包,pip离线安装
查看>>
mysql建库建表
查看>>
实验五
查看>>
spark生成大宽表的parquet性能优化
查看>>
彩票,随机一注
查看>>
怎么总是这等凶卦
查看>>
浅谈logo在PPT设计中的运用
查看>>
网络那点事之socket队列
查看>>
编程练习:寻找发帖"水王"扩展问题二
查看>>