如何在UITableView的删除按钮上添加图像?

9 浏览
0 Comments

如何在UITableView的删除按钮上添加图像?

我有一个UITableView,并在其中添加了编辑操作。现在我想在删除按钮的标签上方添加图片,如下所示:

enter image description here

这是我的代码:

func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [UITableViewRowAction]? {

let blockAction = UITableViewRowAction(style: .Normal, title: "Block") { (rowAction:UITableViewRowAction, indexPath:NSIndexPath) -> Void in

//TODO: 在此处删除indexPath处的行

}

blockAction.backgroundColor = UIColor.redColor()

return [blockAction]

}

如何在Delete按钮上添加图片?

0
0 Comments

问题原因:用户想要在UITableView的删除按钮上添加图片。

解决方法:可以通过实现可滑动的tableviewcell来实现,其中可以实现自定义按钮进行编辑操作。可以参考以下教程:

https://www.raywenderlich.com/62435/make-swipeable-table-view-cell-actions-without-going-nuts-scroll-views

0
0 Comments

如何在UITableView的删除按钮上添加图像?

问题原因:用户想要在UITableView的删除按钮上添加图像。

解决方法:

1. 在UITableView的代理方法tableView(_:editActionsForRowAt:)中,创建一个UITableViewRowAction对象。

2. 设置该对象的style为.normal,title为"\nBlock",即将删除按钮的文字设置为空,并使用'\n'符号让文字下移。

3. 在该对象的闭包中,可以添加删除某行的相关代码。

4. 通过设置blockAction的backgroundColor,将特定图像设置为删除按钮的背景颜色,可以使用UIColor的patternImage方法来实现。

示例代码如下:

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]

}

0