swift中editingStyleForRowAtIndexPath的写法
Posted 蓝天下的田埂上
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift中editingStyleForRowAtIndexPath的写法相关的知识,希望对你有一定的参考价值。
效果图:
首先要实现这句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的写法的主要内容,如果未能解决你的问题,请参考以下文章
将 Swift 3 升级到 4,目标 c 中不再有 swift 扩展
在 Swift 项目中使用 Objective C 类中的 Swift 类