In iOS Example, added call to super in -[SpotTableViewCell prepareForReuse] as per Apple documentation.

This commit is contained in:
Larry Legend 2011-10-25 20:50:16 -04:00
parent 4a6a93e8d4
commit 50628f552a

View file

@ -69,6 +69,7 @@
#pragma mark - UITableViewCell #pragma mark - UITableViewCell
- (void)prepareForReuse { - (void)prepareForReuse {
[super prepareForReuse];
[self.imageView cancelImageRequestOperation]; [self.imageView cancelImageRequestOperation];
self.textLabel.text = nil; self.textLabel.text = nil;
self.detailTextLabel.text = nil; self.detailTextLabel.text = nil;