前端之家收集整理的这篇文章主要介绍了
swift中tableview给cell添加左划菜单,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
直接在文件中加入函数就行
func tableView(_ tableView: UITableView,editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {
let more = UITableViewRowAction(style: .normal,title: "添加") { action,index in
}
more.backgroundColor = UIColor.lightGray
let favorite = UITableViewRowAction(style: .normal,title: "打招呼") { action,index in
}
favorite.backgroundColor = UIColor.orange
return [favorite,more]
}
原文链接:https://www.f2er.com/swift/321362.html