diff options
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; |