我有一个UITableView,我已经添加了编辑操作。现在我想在删除按钮标签上添加图像,如:
这是我的代码:
func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [UITableViewRowAction]? {
let blockAction = UITableViewRowAction(style: .Normal, title: "Block") { (rowAction:UITableViewRowAction, indexPath:NSIndexPath) -> Void in
//TODO: Delete the row at indexPath here
}
blockAction.backgroundColor = UIColor.redColor()
return [blockAction]
}
如何在Delete
按钮上添加图片?
答案 0 :(得分:2)
您可以在背景颜色上使用特殊图像,并使用'\ n'符号记下文本
func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {
let blockAction = UITableViewRowAction(style: .normal, title: "\nBlock") { (rowAction:UITableViewRowAction, indexPath:IndexPath) -> Void in
//TODO: Delete the row at indexPath here
}
blockAction.backgroundColor = UIColor(patternImage: UIImage(named: "delete_background")!)
return [blockAction]
}
答案 1 :(得分:0)
您可以实现可滑动的tableviewcell来完成此操作,您可以在其中实现编辑操作的自定义按钮。这方面有很多教程。检查下面的一个: