i\'m having an issue using SDWebImage to load images to a UIImageView inside a custom UITableViewCell. This is my code at the UITableView delegate:
static NS
If you have your UITableViewDelegate set on your table, you could use the delegate method:
- tableView:didEndDisplayingCell:forRowAtIndexPath:
to set the image to NULL (or the default) when your cell scrolls off screen.
And since you're using SDWebImage, canceling it could be as easy as "cancelCurrentImageLoad" on the cell's image view.