I have a UITableView with custom cells. I load images asynchronously using Grand Central Dispatch. Everything works fine, but when I scroll down, previously loaded images ar
Doesn't UITableViewCell define -(void) prepareForReuse for that purpose? Override it and clear your imageView in there.