ios tablevie collection 使用reuse后 快速滑动图片错位解决办法
1 2 3 4 5 6 7 8 9 10 11 |
cell.m 中重写prepareForReuse方法 - (void)prepareForReuse { [super prepareForReuse]; // 重置image self.imageView.image = nil; // 更新位置 self.imageView.frame = self.contentView.bounds; } |