swift中tableview给cell添加左划菜单

前端之家收集整理的这篇文章主要介绍了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

猜你在找的Swift相关文章