blob: 933337b7245cfcfd8ae15b11fe9670e81d55fca7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// 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"
@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 isMe:(BOOL)isMe;
@end
|