blob: 7648c5264d9492c8d11ee07449ae549abb3d8fb3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//
// MessageCell.h
// Juick
//
// Created by Vitaly Takmazov on 03/12/2017.
// Copyright © 2017 com.juick. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "Message.h"
@protocol MessageCellDelegate
-(void) avatarClicked:(NSString *)uname;
@end
@interface MessageCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *avatar;
@property (weak, nonatomic) IBOutlet UILabel *title;
@property (weak, nonatomic) IBOutlet UILabel *timestamp;
@property (weak, nonatomic) IBOutlet UITextView *text;
@property (weak, nonatomic) IBOutlet UIImageView *attach;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *attachmentHeight;
@property (weak, nonatomic) IBOutlet UILabel *summary;
@property (nonatomic, strong) id<MessageCellDelegate> delegate;
- (void) configureWithMessage:(Message *)msg;
@end
|