aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/ios/iOS UI Test/iOS UI Test/MCTTableViewCell.m
diff options
context:
space:
mode:
Diffstat (limited to 'example/ios/iOS UI Test/iOS UI Test/MCTTableViewCell.m')
-rw-r--r--example/ios/iOS UI Test/iOS UI Test/MCTTableViewCell.m25
1 files changed, 25 insertions, 0 deletions
diff --git a/example/ios/iOS UI Test/iOS UI Test/MCTTableViewCell.m b/example/ios/iOS UI Test/iOS UI Test/MCTTableViewCell.m
new file mode 100644
index 00000000..1c45b0ec
--- /dev/null
+++ b/example/ios/iOS UI Test/iOS UI Test/MCTTableViewCell.m
@@ -0,0 +1,25 @@
+//
+// MCTTableViewCell.m
+// iOS UI Test
+//
+// Created by Paul Young on 14/07/2013.
+// Copyright (c) 2013 AppJon. All rights reserved.
+//
+
+#import "MCTTableViewCell.h"
+
+@implementation MCTTableViewCell
+
+- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
+{
+ self = [super initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:reuseIdentifier];
+ return self;
+}
+
+- (void)prepareForReuse
+{
+ [self.messageRenderingOperation cancel];
+ self.detailTextLabel.text = @" ";
+}
+
+@end