前端之家收集整理的这篇文章主要介绍了
如何将自定义图像添加到uitableview单元格滑动以进行删除,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你能告诉我,在UITableview上滑动单元格时如何
添加自定义图像来
删除按钮?
搜索您需要的
功能“editActionsForRowAtIndexPath”,您可以在其中创建操作范围.您需要将UIImage设置为UITableViewRowAction的backgroundColor.
let someAction = UITableViewRowAction(style: .Default,title: "") { value in
println("button did tapped!")
}
someAction.backgroundColor = UIColor(patternImage: UIImage(named: "myImage")!)
原文链接:https://www.f2er.com/swift/320202.html