diff options
author | Vitaly Takmazov | 2018-03-04 11:50:14 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-03-04 11:50:22 +0300 |
commit | a04f0db29cb280eb45888d3a56967cf9adc6214d (patch) | |
tree | b1625107b75a906b7b402296b3a93ca11a578633 /Juick/Views/BubbleMessageCell.h | |
parent | 782219f3cdc8cac644cc33657813a5f8319dbae7 (diff) |
ChatViewController
Diffstat (limited to 'Juick/Views/BubbleMessageCell.h')
-rw-r--r-- | Juick/Views/BubbleMessageCell.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Juick/Views/BubbleMessageCell.h b/Juick/Views/BubbleMessageCell.h new file mode 100644 index 0000000..1f5d2e9 --- /dev/null +++ b/Juick/Views/BubbleMessageCell.h @@ -0,0 +1,23 @@ +// +// BubbleMessageCell.h +// Juick +// +// Created by Vitaly Takmazov on 04/03/2018. +// Copyright © 2018 com.juick. All rights reserved. +// + +#import <UIKit/UIKit.h> +#import "Message.h" +#import "FixedLabel.h" + +@import TTTAttributedLabel; + +@interface BubbleMessageCell : UITableViewCell<TTTAttributedLabelDelegate> +@property (strong, nonatomic) IBOutlet UIImageView *avatarView; +@property (strong, nonatomic) IBOutlet UILabel *unreadMarker; +@property (strong, nonatomic) IBOutlet UILabel *name; +@property (strong, nonatomic) IBOutlet FixedLabel *message; + +-(void) configureWithMessage:(Message *) message; + +@end |