Swift 自定义 TableView 尾随动作视图

问题描述

我有一个带有 TableViewtrailingSwipeAction

这是我的代码

func tableView(_ tableView: UITableView,trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {

    let deleteAction = UIContextualAction(style: .destructive,title: "Delete".localized()) {[uNowned self] _,_,completionHandler in
            let selectedUser = self.friendsDataSourceArray[indexPath.section]
            self.friendsDataSourceArray.remove(at: indexPath.section)
            let indexSet = IndexSet(arrayLiteral: indexPath.section)
            self.theTableView.deleteSections(indexSet,with: .fade)
            self.theTableView.reloadData()
            DataHandler.removeFriend(friendId: selectedUser.uid)
            completionHandler(true)
        }
        deleteAction.backgroundColor = .redCustom
        deleteAction.image = UIImage(systemName: "person.fill.badge.minus")
        let configuration = UISwipeActionsConfiguration(actions: [deleteAction])
        configuration.performsFirstActionWithFullSwipe = true
        return configuration

}

这是它的样子:

enter image description here

这就是我想要的样子:

enter image description here

我的有两点不对。

1.没有inset shadow

2.它与我的 cell 的圆角不对齐。

知道如何实现这一目标吗?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)