Skip to content

Commit

Permalink
Merge pull request AFNetworking#91 from houseoflegend/master
Browse files Browse the repository at this point in the history
In iOS Example, added call to super in -[SpotTableViewCell prepareForReuse]
  • Loading branch information
Mattt Thompson committed Oct 31, 2011
2 parents 4a6a93e + 50628f5 commit 4285c0d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions iOS Example/Classes/Views/SpotTableViewCell.m
Expand Up @@ -69,6 +69,7 @@ - (void)setSpot:(Spot *)spot {
#pragma mark - UITableViewCell

- (void)prepareForReuse {
[super prepareForReuse];
[self.imageView cancelImageRequestOperation];
self.textLabel.text = nil;
self.detailTextLabel.text = nil;
Expand Down

0 comments on commit 4285c0d

Please sign in to comment.