博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oc UIAlertController封装
阅读量:5134 次
发布时间:2019-06-13

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

#define SHOWALERT(MESSAGE) \UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"提示" message:MESSAGE preferredStyle:UIAlertControllerStyleAlert]; \UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:nil]; \[alertController addAction:okAction]; \UIViewController *vc = [UIApplication sharedApplication].windows[0].rootViewController;\[vc presentViewController:alertController animated:YES completion:nil];

 

转载于:https://www.cnblogs.com/hualuoshuijia/p/6002699.html

你可能感兴趣的文章
C#获取变量名的扩展方法
查看>>
PHP持续集成实践
查看>>
Java import javax.servlet 出错
查看>>
PermutationsUnique,求全排列,去重
查看>>
705.Design HashSet
查看>>
cf1173 D. Nauuo and Circle
查看>>
自定义数字格式字符串_部分分隔符和条件格式
查看>>
Android--启动拍照功能并返回结果
查看>>
百度文库推广引流技巧
查看>>
求1+2+3+4+...+n
查看>>
PAT甲题题解-1077. Kuchiguse (20)-找相同后缀
查看>>
PAT甲题题解-1010. Radix (25)-二分搜索
查看>>
[.NET 4.5] ADO.NET / ASP.NET 使用 Async 和 Await 异步 存取数据库
查看>>
【django小练习之主机管理界面】
查看>>
2017-2018-1 20155201 20155313 实验一 开发环境的熟悉
查看>>
C#SuperSocket服务器的简易实现
查看>>
04-树6 Complete Binary Search Tree(30 分)
查看>>
html5离线缓存使用
查看>>
linux下彻底卸载mysql 图解教程
查看>>
grep, sed 和 awk 学习总结
查看>>