diff options
author | Vitaly Takmazov | 2013-11-10 15:56:03 +0400 |
---|---|---|
committer | Vitaly Takmazov | 2013-11-10 16:02:25 +0400 |
commit | b60aec3598a12a5bf07ad490fa87723e308cd58b (patch) | |
tree | 412c9b1335102219c411f48bc711be58f63846c0 /Juick/MessageCell.h | |
parent | c7ac059a7e59ff3da4f88c53bedae29655ae900c (diff) |
Images
Diffstat (limited to 'Juick/MessageCell.h')
-rw-r--r-- | Juick/MessageCell.h | 8 |
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 |