Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
In iOS Example, added call to super in -[SpotTableViewCell prepareFor…
Browse files Browse the repository at this point in the history
…Reuse] as per Apple documentation.
  • Loading branch information
larrylegend committed Oct 26, 2011
1 parent 4a6a93e commit 50628f5
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 50628f5

Please sign in to comment.