I have photos in a collection view, some of which have an icon-like image overlayed via a CALayer. When a cell is reused, the icon shows up in a another cell.
I implemented the method -prepareForReuse in the class derived from the UICollectionViewCell, that is used to fill the UICollectionView
-(void)prepareForReuse{
NSArray* array = self.layer.sublayers;
for (CALayer* layer in array){
if (layer.name==@"delete"){
[layer removeFromSuperlayer];
}
}
}
The problem is that self.layer.sublayers is unknown, so the code won't compile. This code works fine when used in collectionView didSelectItemAtIndexPath:.
In the method prepareForReuse, How can I clear the CALayer that was added from the previous cell ?