iOS:Swift 中 UITableViewCell 的垃圾桶删除按钮

iOS: Trash Can Delete Button for UITableViewCell in Swift

有没有办法在 UITableViewUITableViewCell 向右滑动时将此图标添加到 UITableViewRowAction,而无需设置 [=] 的 patternImage 13=]的背景?

即添加访问此图标:

,

进入以下代码:

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

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

}

这目前不可能,但在 iOS11 中将成为可能。这是实现这些自定义操作的教程:

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