2
0

WFCUConversationTableViewCell.h 975 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ConversationTableViewCell.h
  3. // WFChat UIKit
  4. //
  5. // Created by WF Chat on 2017/8/29.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BubbleTipView.h"
  10. #import <WFChatClient/WFCChatClient.h>
  11. @interface WFCUConversationTableViewCell : UITableViewCell
  12. @property (strong, nonatomic) UIImageView *potraitView;
  13. @property (strong, nonatomic) UILabel *targetView;
  14. @property (strong, nonatomic) UILabel *digestView;
  15. @property (strong, nonatomic) UILabel *offcialView;
  16. @property (strong, nonatomic) UIImageView *statusView;
  17. @property (strong, nonatomic) UILabel *timeView;
  18. @property (strong, nonatomic) UIImageView *silentView;
  19. @property (strong, nonatomic) UIImageView *secretChatView;
  20. @property (nonatomic, strong)BubbleTipView *bubbleView;
  21. @property (nonatomic, strong)WFCCConversationInfo *info;
  22. @property (nonatomic, strong)WFCCConversationSearchInfo *searchInfo;
  23. @property (nonatomic, assign, getter=isBig)BOOL big;
  24. @end