aboutsummaryrefslogtreecommitdiffhomepage
path: root/example
diff options
context:
space:
mode:
authorGravatar Paul Young <paulyoungonline@gmail.com>2013-07-14 23:18:59 -0400
committerGravatar Paul Young <paulyoungonline@gmail.com>2013-07-14 23:18:59 -0400
commit1ee4a022d831bd256f1ecc535864e1ba6c4885f1 (patch)
tree4af9c3d5504ddae099ee76124cc2004b25225b63 /example
parent94a1a8bc8eb5a43d4e7bcd3576e32aab034ef4a5 (diff)
Clearing previous cell subtitle on reuse.
Diffstat (limited to 'example')
-rw-r--r--example/ios/iOS UI Test/iOS UI Test/MasterViewController.m1
1 files changed, 1 insertions, 0 deletions
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;