When I use HJCache in a UITableView, images are overlapping while scrolling up and down, so the images overlap while new cells are being loaded. The next cell already contains an image, and then you can see it's loading an image and it gets placed on top of it.
My code:
HJManagedImageV *asyncImage = [[[HJManagedImageV alloc] initWithFrame:CGRectMake(0,0,90,65)] autorelease];
asyncImage.url = [NSURL URLWithString:[ar objectAtIndex:0]];
[imgMan manage:asyncImage]; [cell.contentView addSubview:asyncImage];