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

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

Shrikar Kalagi 2月前

41 0

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

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

这个:

enter image description here

是否可以?

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

    我希望这会有所帮助:

        func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
            for view in cell.subviews {
                if view.self.description.contains("UITableViewCellReorderControl") {
                    for sv in view.subviews {
                        if (sv is UIImageView) {
                            (sv as? UIImageView)?.image = UIImage(named: "your_image")
                            (sv as? UIImageView)?.contentMode = .center
                            sv.frame = CGRect(x: 0, y: 0, width: 25, height: 25)
                        }
                    }
                }
            }
        }
    
返回
作者最近主题: