diff options
author | Vitaly Takmazov | 2018-11-05 22:45:49 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-11-05 22:45:49 +0300 |
commit | 8af785b209412b5d52dcd0503ccdbab108c506a7 (patch) | |
tree | 265cdf02b408f65dd2398ffbd321bd68e256b67d /Juick/Views/BubbleMessageCell.h | |
parent | 3fb9ed7994aa50b1281ec6be1ff4727842d3d0c2 (diff) |
Bye-bye, TTTAttributedLabel
Diffstat (limited to 'Juick/Views/BubbleMessageCell.h')
-rw-r--r-- | Juick/Views/BubbleMessageCell.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Juick/Views/BubbleMessageCell.h b/Juick/Views/BubbleMessageCell.h index 933337b..bad2fc4 100644 --- a/Juick/Views/BubbleMessageCell.h +++ b/Juick/Views/BubbleMessageCell.h @@ -8,13 +8,12 @@ #import <UIKit/UIKit.h> #import "Message.h" -#import "FixedLabel.h" -@interface BubbleMessageCell : UITableViewCell<TTTAttributedLabelDelegate> +@interface BubbleMessageCell : UITableViewCell @property (strong, nonatomic) IBOutlet UIImageView *avatarView; @property (strong, nonatomic) IBOutlet UILabel *unreadMarker; @property (strong, nonatomic) IBOutlet UILabel *name; -@property (strong, nonatomic) IBOutlet FixedLabel *message; +@property (strong, nonatomic) IBOutlet UITextView *message; -(void) configureWithMessage:(Message *) message isMe:(BOOL)isMe; |