summaryrefslogtreecommitdiff
path: root/Juick/MessageCell.h
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/MessageCell.h')
-rw-r--r--Juick/MessageCell.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/Juick/MessageCell.h b/Juick/MessageCell.h
index 342aecc..c1298af 100644
--- a/Juick/MessageCell.h
+++ b/Juick/MessageCell.h
@@ -9,6 +9,10 @@
#import <UIKit/UIKit.h>
#import "TTTAttributedLabel.h"
+#import "Message.h"
+
+#import "NSString+HTML.h"
+
#define kLabelHorizontalInsets 20.0f
@@ -18,8 +22,10 @@
@property (strong, nonatomic) IBOutlet UILabel *timestampLabel;
@property (strong, nonatomic) IBOutlet UIImageView *avatar;
@property (strong, nonatomic) IBOutlet TTTAttributedLabel *bodyLabel;
+@property (strong, nonatomic) IBOutlet UIImageView *attach;
@property (strong, nonatomic) IBOutlet UILabel *summaryLabel;
-- (void)updateFonts;
+- (void) updateFonts;
+- (void) bind:(Message *)msg;
@end