微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Swift 自定义 TableView 尾随动作视图

如何解决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 举报,一经查实,本站将立刻删除。