博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS笔记【UIAlertCotroller】 2017-09-06
阅读量:5749 次
发布时间:2019-06-18

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

1.种类
    中部提示框-alert
    底部提示框-actionSheet
2.菜单项参数
    title:标题        取消
    style:样式        .cencel
    handle:nil        误操作
    把菜单项添加到UIAlertController:使用addAction方法
    显示菜单:使用self.present
 
// MARK: - Table view delegate// 单元格点击override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {        // print("您点击了\(indexPath.section)组,\(indexPath.row)行")   let menu = UIAlertController(title: "提示", message: "您点击了\(indexPath.section)组,\(indexPath.row)行", preferredStyle: .alert)   let option = UIAlertAction(title: "确认", style: .default, handler: nil)   let option2 = UIAlertAction(title: "取消", style: .cancel, handler: nil)   let option3 = UIAlertAction(title: "删除", style: .destructive, handler: nil)   menu.addAction(option)   menu.addAction(option2)   menu.addAction(option3)   menu.addAction(option)   self.present(menu, animated: true, completion: nil)}

 

转载于:https://www.cnblogs.com/lizhipengvvip/p/7499668.html

你可能感兴趣的文章
Sublime Text 2.0.2,Build 2221注册码
查看>>
最长递增子序列 动态规划
查看>>
原生CSS设置网站主题色—CSS变量赋值
查看>>
python分类
查看>>
程序是如何执行的(一)a=a+1
查看>>
BZOJ - 3578: GTY的人类基因组计划2
查看>>
【http】post和get请求的区别
查看>>
EL表达式无法显示Model中的数据
查看>>
时间助理 时之助
查看>>
英国征召前黑客组建“网络兵团”
查看>>
PHP 命令行模式实战之cli+mysql 模拟队列批量发送邮件(在Linux环境下PHP 异步执行脚本发送事件通知消息实际案例)...
查看>>
pyjamas build AJAX apps in Python (like Google did for Java)
查看>>
centos5.9使用RPM包搭建lamp平台
查看>>
Javascript String类的属性及方法
查看>>
[LeetCode] Merge Intervals
查看>>
Struts2 学习小结
查看>>
在 Linux 系统中安装Load Generator ,并在windows 调用
查看>>
chm文件打开,有目录无内容
查看>>
whereis、find、which、locate的区别
查看>>
一点不懂到小白的linux系统运维经历分享
查看>>