Merge pull request #91 from houseoflegend/master

In iOS Example, added call to super in -[SpotTableViewCell prepareForReuse]
This commit is contained in:
Mattt Thompson 2011-10-31 08:59:17 -07:00
commit 4285c0de88

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;