summaryrefslogtreecommitdiff
path: root/Juick/Views/MessageCell.h
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/Views/MessageCell.h')
-rw-r--r--Juick/Views/MessageCell.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Juick/Views/MessageCell.h b/Juick/Views/MessageCell.h
index 124ed83..92345d6 100644
--- a/Juick/Views/MessageCell.h
+++ b/Juick/Views/MessageCell.h
@@ -13,13 +13,14 @@
@interface MessageCell : UITableViewCell<TTTAttributedLabelDelegate>
@property (weak, nonatomic) IBOutlet UIImageView *avatar;
-@property (weak, nonatomic) IBOutlet UILabel *timestamp;
@property (weak, nonatomic) IBOutlet UILabel *title;
+@property (weak, nonatomic) IBOutlet UILabel *timestamp;
@property (weak, nonatomic) IBOutlet TagListView *tags;
@property (weak, nonatomic) IBOutlet TTTAttributedLabel *text;
@property (weak, nonatomic) IBOutlet UIImageView *attach;
+@property (weak, nonatomic) IBOutlet NSLayoutConstraint *attachmentHeight;
@property (weak, nonatomic) IBOutlet UILabel *summary;
-@property (strong, nonatomic) Message * message;
+- (void) configureWithMessage:(Message *)msg;
@end