iOS笔记UIAlertCotroller 2017-09-06

Posted 李先森的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS笔记UIAlertCotroller 2017-09-06相关的知识,希望对你有一定的参考价值。

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)
}

 

以上是关于iOS笔记UIAlertCotroller 2017-09-06的主要内容,如果未能解决你的问题,请参考以下文章

视频笔记 CppCon 2016 Chandler Carruth High Performance Code 201 Hybrid Data Structures

论文笔记之:Dynamic Label Propagation for Semi-supervised Multi-class Multi-label Classification ICCV 201

使用thinkpadx201笔记本连接交换机,用wireshark抓的报文都不带vlan,怎么处理?

vulstack2 靶场做题笔记

华硕 X201E 拆机

ASA学习笔记