gpt4 book ai didi

ios - 我们如何改变 EditingStyle Button 相对于 tableVIew 单元格的高度

转载 作者:行者123 更新时间:2023-11-28 13:52:00 25 4
gpt4 key购买 nike

我正在使用 TableView 并使用编辑样式 .delete 滑动单元格,但单元格的大小已根据应用程序的要求进行了自定义。删除按钮的高度有点大,我们如何自定义它。

请查看截图:

enter image description here

最佳答案

@averydev 快速更新我的代码你可以试试这个

class CustomTableViewCell: UITableViewCell {

override func didTransition(to state: UITableViewCellStateMask) {
super.willTransition(to: state)
if state == .showingDeleteConfirmationMask {
let deleteButton: UIView? = subviews.first(where: { (aView) -> Bool in
return String(describing: aView).contains("Delete")

})
if deleteButton != nil {
deleteButton?.frame.size.height = 50.0
}
}
}
}

关于ios - 我们如何改变 EditingStyle Button 相对于 tableVIew 单元格的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54454231/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com