From 50628f552aa871017e13dc567aed16516cfd0e8d Mon Sep 17 00:00:00 2001 From: Larry Legend Date: Tue, 25 Oct 2011 20:50:16 -0400 Subject: [PATCH] In iOS Example, added call to super in -[SpotTableViewCell prepareForReuse] as per Apple documentation. --- iOS Example/Classes/Views/SpotTableViewCell.m | 1 + 1 file changed, 1 insertion(+) diff --git a/iOS Example/Classes/Views/SpotTableViewCell.m b/iOS Example/Classes/Views/SpotTableViewCell.m index b576281..519976b 100644 --- a/iOS Example/Classes/Views/SpotTableViewCell.m +++ b/iOS Example/Classes/Views/SpotTableViewCell.m @@ -69,6 +69,7 @@ #pragma mark - UITableViewCell - (void)prepareForReuse { + [super prepareForReuse]; [self.imageView cancelImageRequestOperation]; self.textLabel.text = nil; self.detailTextLabel.text = nil;