In iOS Example, added call to super in -[SpotTableViewCell prepareForReuse] as per Apple documentation.
This commit is contained in:
parent
4a6a93e8d4
commit
50628f552a
1 changed files with 1 additions and 0 deletions
|
|
@ -69,6 +69,7 @@
|
|||
#pragma mark - UITableViewCell
|
||||
|
||||
- (void)prepareForReuse {
|
||||
[super prepareForReuse];
|
||||
[self.imageView cancelImageRequestOperation];
|
||||
self.textLabel.text = nil;
|
||||
self.detailTextLabel.text = nil;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue