Skip to content

Instantly share code, notes, and snippets.

@quard8
Created March 2, 2014 16:30
Show Gist options
  • Select an option

  • Save quard8/9309111 to your computer and use it in GitHub Desktop.

Select an option

Save quard8/9309111 to your computer and use it in GitHub Desktop.
Loading images for UITableViewCell with AFNetworking
__weak QEventCell *weakCell = cell;
[cell.imageView setImageWithURLRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:event.poster]] placeholderImage:[UIImage imageNamed:@"placeholder"] success:^(NSURLRequest *request, NSHTTPURLResponse *response, UIImage *image) {
weakCell.imageView.image = image;
[weakCell setNeedsLayout];
} failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error) {
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment