blob: f31057b544d64eaa88d1a8ff8f5ca3c296ea0ecb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//
// ConversationCell.h
// Juick
//
// Created by Vitaly Takmazov on 04/03/2018.
// Copyright © 2018 com.juick. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "Chat.h"
@interface ConversationCell : UITableViewCell
@property (strong, nonatomic) IBOutlet UILabel *chatName;
@property (strong, nonatomic) IBOutlet UIImageView *avatar;
@property (strong, nonatomic) IBOutlet UILabel *lastMessage;
@property (strong, nonatomic) IBOutlet UILabel *unreadMarker;
-(void) configureWithChat:(Chat *)chat;
@end
|