Brak opisu

KXCustomServiceTableViewCell.h 553B

1234567891011121314151617181920
  1. //
  2. // KXCustomServiceTableViewCell.h
  3. // CAISHEN
  4. //
  5. // Created by xiaoxi on 2017/12/6.
  6. // Copyright © 2017年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "KXChatModel.h"
  10. @interface KXCustomServiceTableViewCell : UITableViewCell
  11. @property (nonatomic, strong) UILabel *timeLabel;
  12. @property (nonatomic, strong) UIImageView *iconView;
  13. @property (nonatomic, strong) UIImageView *bgView;
  14. @property (nonatomic, strong) UILabel *contentLabel;
  15. @property (nonatomic, strong) UILabel *line;
  16. - (void)refreshCell:(KXChatModel *)model;
  17. @end