Example updated: all images use the SDWebImageRefreshCached option

This commit is contained in:
Bogdan Poplauschi 2016-09-01 14:26:54 +03:00
parent c012fc9bb2
commit 033899d0ac
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@
cell.textLabel.text = [NSString stringWithFormat:@"Image #%ld", (long)indexPath.row];
cell.imageView.contentMode = UIViewContentModeScaleAspectFill;
[cell.imageView sd_setImageWithURL:[NSURL URLWithString:[_objects objectAtIndex:indexPath.row]]
placeholderImage:[UIImage imageNamed:@"placeholder"] options:indexPath.row == 0 ? SDWebImageRefreshCached : 0];
placeholderImage:[UIImage imageNamed:@"placeholder"] options:SDWebImageRefreshCached];
return cell;
}