I am using asyncimageview in the uitableview for displaying the image in the uitableviewcell but when scrolling the tableview the image are not displayed directly. it first display old one and the present the new image from the url. its not caching or not displaying from cache.
if (Cell == nil) {
Cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
Cell.selectionStyle = UITableViewCellSelectionStyleNone;
//Create Cell Method
[self CreateCell:FollowCell atIndexPath:indexPath]; }
// Set Cell Method
[self SetCell:FollowCell atIndexPath:indexPath];
[Cell setClipsToBounds:YES];
return FollowCell;
// Image code
[asyncImgUser setImageURL:[NSURL URLWithString:strUserImage] andPlaceHolder:[UIImage imageNamed:@"Placeholder.png"]];
}