33 lines
742 B
Objective-C
33 lines
742 B
Objective-C
//
|
|
// TLMessageBaseCell.h
|
|
// TLChat
|
|
//
|
|
// Created by 李伯坤 on 16/3/1.
|
|
// Copyright © 2016年 李伯坤. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "TLMessageCellDelegate.h"
|
|
#import "TLMessage.h"
|
|
|
|
@interface TLMessageBaseCell : UITableViewCell
|
|
|
|
@property (nonatomic, assign) id<TLMessageCellDelegate>delegate;
|
|
|
|
@property (nonatomic, strong) UILabel *timeLabel;
|
|
|
|
@property (nonatomic, strong) UIButton *avatarButton;
|
|
|
|
@property (nonatomic, strong) UILabel *usernameLabel;
|
|
|
|
@property (nonatomic, strong) UIImageView *messageBackgroundView;
|
|
|
|
@property (nonatomic, strong) TLMessage *message;
|
|
|
|
/**
|
|
* 更新消息,如果子类不重写,默认调用setMessage方法
|
|
*/
|
|
- (void)updateMessage:(TLMessage *)message;
|
|
|
|
@end
|