8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

更改 UITableView 中移动单元格的默认图标

TriNguyen 1月前

96 0

我需要更改 UITableView 中移动单元格的默认图标。这个:可以吗?

我需要更改 UITableView 中移动单元格的默认图标。

这个:

enter image description here

是否可以?

帖子版权声明 1、本帖标题:更改 UITableView 中移动单元格的默认图标
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由TriNguyen在本站《uitableview》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 我无法找到任何其他适合我的答案,但我找到了一个解决方案。

    Grzegorz R. Kulesza 的答案 几乎 有用,但我不得不做一些改变。

    这适用于 Swift 5 iOS 13

    // Change default reorder icon in UITableViewCell
    func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
        let imageView = cell.subviews.first(where: { $0.description.contains("Reorder") })?.subviews.first(where: { $0 is UIImageView }) as? UIImageView
        imageView?.image = UIImage(named: "your_custom_reorder_icon.png")
        let size = cell.bounds.height * 0.6 // scaled for padding between cells
        imageView?.frame.size.width = size
        imageView?.frame.size.height = size
    }
    
返回
作者最近主题: