// // BubbleMessageCell.h // Juick // // Created by Vitaly Takmazov on 04/03/2018. // Copyright © 2018 com.juick. All rights reserved. // #import #import "Message.h" @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 UITextView *message; -(void) configureWithMessage:(Message *) message isMe:(BOOL)isMe; @end