gpt4 book ai didi

ios - 当 tableview 处于编辑模式时,如何在 swift 3+ 中设置行顶部的重新排序控件

转载 作者:行者123 更新时间:2023-11-30 11:46:04 25 4
gpt4 key购买 nike

当 tableview 处于编辑模式时,我想更改并设置 tableviewcell 中行顶部的重新排序控制图标。

最佳答案

经过长时间的尝试和点击,我找到了以下解决方案。

用于在cell.subviews中查看{ if String(描述: view.description).range(of:"Reorder") != nil {

                for subview in view.subviews {
if subview.isKind(of: UIImageView.self) {

let subImgV = subview as! UIImageView
if subImgV.image != UIImage(named: "rearrangeIcon") {
subImgV.image = UIImage(named: "rearrangeIcon")
subview.frame = CGRect(x: 0, y: 0, width: view.frame.size.width, height: view.frame.size.height); // First we need to increse its size as it is superview after that set imageView content mode left, right, top, bottom
subImgV.contentMode = .top

}
}
}
}
}

关于ios - 当 tableview 处于编辑模式时,如何在 swift 3+ 中设置行顶部的重新排序控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48821871/

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