码迷,mamicode.com
首页 > 编程语言 > 详细

swift中editingStyleForRowAtIndexPath的写法

时间:2017-01-05 16:57:33      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:for   rri   exp   row   百度一下   百度   turn   anim   owa   

效果图:

技术分享

首先要实现这句tableView.setEditing(true, animated: true)才能弹出左侧的小圆圈

然而在oc中tableview删除的写法百度一下很常见但是swift中包的很严实:

override func tableView(tableView: UITableView, editingStyleForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCellEditingStyle {

        return UITableViewCellEditingStyle(rawValue: UITableViewCellEditingStyle.Delete.rawValue | UITableViewCellEditingStyle.Insert.rawValue)!

    }

这样选择的时候才会变成对号。

swift中editingStyleForRowAtIndexPath的写法

标签:for   rri   exp   row   百度一下   百度   turn   anim   owa   

原文地址:http://www.cnblogs.com/caodedi-88/p/6252599.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!