1234567891011121314151617181920 |
- //
- // KXCustomServiceTableViewCell.h
- // CAISHEN
- //
- // Created by xiaoxi on 2017/12/6.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KXChatModel.h"
- @interface KXCustomServiceTableViewCell : UITableViewCell
- @property (nonatomic, strong) UILabel *timeLabel;
- @property (nonatomic, strong) UIImageView *iconView;
- @property (nonatomic, strong) UIImageView *bgView;
- @property (nonatomic, strong) UILabel *contentLabel;
- @property (nonatomic, strong) UILabel *line;
- - (void)refreshCell:(KXChatModel *)model;
- @end
|