aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/ios/iOS UI Test/iOS UI Test/MCTTableViewCell.h
diff options
context:
space:
mode:
authorGravatar Paul Young <paulyoungonline@gmail.com>2013-07-14 15:51:15 -0400
committerGravatar Paul Young <paulyoungonline@gmail.com>2013-07-14 15:51:15 -0400
commitba30d5c850b2712d0a5530ecc09b8616e55a40ba (patch)
tree885033d91cc83ac1dfa1057505c117a2d73fa5f9 /example/ios/iOS UI Test/iOS UI Test/MCTTableViewCell.h
parent9da381504d06076274d893b6a73dd270b703e8aa (diff)
Associating message rendering operation with table view cell.
* Added custom table view cell. * Cancelling operation on cell reuse.
Diffstat (limited to 'example/ios/iOS UI Test/iOS UI Test/MCTTableViewCell.h')
-rw-r--r--example/ios/iOS UI Test/iOS UI Test/MCTTableViewCell.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/example/ios/iOS UI Test/iOS UI Test/MCTTableViewCell.h b/example/ios/iOS UI Test/iOS UI Test/MCTTableViewCell.h
new file mode 100644
index 00000000..0d680415
--- /dev/null
+++ b/example/ios/iOS UI Test/iOS UI Test/MCTTableViewCell.h
@@ -0,0 +1,16 @@
+//
+// MCTTableViewCell.h
+// iOS UI Test
+//
+// Created by Paul Young on 14/07/2013.
+// Copyright (c) 2013 AppJon. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+#import <MailCore/MailCore.h>
+
+@interface MCTTableViewCell : UITableViewCell
+
+@property (nonatomic, strong) MCOIMAPMessageRenderingOperation * messageRenderingOperation;
+
+@end