我需要更改 UITableView 中移动单元格的默认图标。这个:可以吗?
我需要更改 UITableView 中移动单元格的默认图标。
这个:
是否可以?
我在 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)
}
}
}
}
}