当将UITableViewRowActionUITableView向右滑动时,是否有一种方法可以将此图标添加到UITableViewCell中,而无需设置patternImage的背景的UITableViewRowAction

即添加访问此图标:

ios - iOS:Swift中UITableViewCell的垃圾桶可以删除按钮-LMLPHP


变成以下代码:

func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {

    let delete = UITableViewRowAction(style: .destructive, title: "", handler: {})

}

最佳答案

目前尚无法实现,但在iOS 11中可以实现。这是实现这些自定义操作的教程:

https://developerslogblog.wordpress.com/2017/06/28/ios-11-swipe-leftright-in-uitableviewcell/

10-08 12:28