前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Swift 2.0 UIAlertView 和 UIActionSheet 的使用

Swift 2.0 UIAlertView 和 UIActionSheet 的使用

作者头像
Mr.RisingSun
发布2018-01-09 17:06:31
7410
发布2018-01-09 17:06:31
举报
文章被收录于专栏:移动端开发移动端开发

 在 IOS 9.0 之后, UIAlertView  是 给废弃了的,虽然你要使用的话,暂时还是可以的,但是在 9.0 之后,IOS 推荐大家使用的是  UIAlertController 这个控制器。下面是它的使用。

代码语言:javascript
复制
//  在 IOS 9.0 之后, UIAlertView  是 给废弃了的,虽然你要使用的话,暂时还是可以的,但是在 9.0 之后,IOS 推荐大家使用的是  UIAlertController 这个控制器。下面是它的使用。
        let alview:UIAlertController = UIAlertController(title: "提示", message: "您点击了cell", preferredStyle: UIAlertControllerStyle.Alert)
        
        let action:UIAlertAction = UIAlertAction (title: "取消", style: UIAlertActionStyle.Cancel) { (action) -> Void in
        
            // 取消添加的点击事件
            print("好想你")
        }
        
        let actionOK:UIAlertAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.Default) { (actionOK) -> Void in

            // OK 的点击事件
            print("你还好吗")
        }

        // 这里就是添加一个 事件 上去的感觉, 只是这个  事件  是有类型 ,比如 删除, 取消
        alview .addAction(actionOK)
        alview .addAction(action)
        self .presentViewController(alview, animated: true) { () -> Void in
       
        }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2016-03-19 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档