WFCUConversationSearchTableViewCell.h 629 B

123456789101112131415161718192021
  1. //
  2. // ConversationSearchTableViewCell.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 WFCUConversationSearchTableViewCell : UITableViewCell
  12. @property (strong, nonatomic) UIImageView *potraitView;
  13. @property (strong, nonatomic) UILabel *targetView;
  14. @property (strong, nonatomic) UILabel *digestView;
  15. @property (strong, nonatomic) UILabel *timeView;
  16. @property (nonatomic, strong)WFCCMessage *message;
  17. @property (nonatomic, strong)NSString *keyword;
  18. @end