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