STTableIMUserInfoCell.h 649 B

12345678910111213141516171819202122
  1. //
  2. // STTableIMUserInfoCell.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/4/23.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "STTableBaseCell.h"
  10. @interface STTableIMUserInfoCell : STTableBaseCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *headerImgView;
  12. @property (weak, nonatomic) IBOutlet UILabel *topLab;
  13. @property (weak, nonatomic) IBOutlet UILabel *bottomLab;
  14. @property (weak, nonatomic) IBOutlet UIView *separatorView;
  15. @property (weak, nonatomic) IBOutlet UILabel *timeLab;// 显示 时间
  16. @property (weak, nonatomic) IBOutlet UIImageView *rightChatImgView; // 右侧 聊天图标
  17. @end