From 1ee4a022d831bd256f1ecc535864e1ba6c4885f1 Mon Sep 17 00:00:00 2001 From: Paul Young Date: Sun, 14 Jul 2013 23:18:59 -0400 Subject: Clearing previous cell subtitle on reuse. --- example/ios/iOS UI Test/iOS UI Test/MasterViewController.m | 1 + 1 file changed, 1 insertion(+) (limited to 'example') diff --git a/example/ios/iOS UI Test/iOS UI Test/MasterViewController.m b/example/ios/iOS UI Test/iOS UI Test/MasterViewController.m index 40aa791f..9e6f49df 100644 --- a/example/ios/iOS UI Test/iOS UI Test/MasterViewController.m +++ b/example/ios/iOS UI Test/iOS UI Test/MasterViewController.m @@ -170,6 +170,7 @@ finishedRefreshWithFetcher:(GTMHTTPFetcher *)fetcher - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { MCTTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath]; [cell.messageRenderingOperation cancel]; + cell.detailTextLabel.text = @" "; MCOIMAPMessage *message = self.messages[indexPath.row]; cell.textLabel.text = message.header.subject; -- cgit v1.2.3