// // ConversationTableViewCell.h // WFChat UIKit // // Created by WF Chat on 2017/8/29. // Copyright © 2017年 WildFireChat. All rights reserved. // #import #import "BubbleTipView.h" #import @interface WFCUConversationTableViewCell : UITableViewCell @property (strong, nonatomic) UIImageView *potraitView; @property (strong, nonatomic) UILabel *targetView; @property (strong, nonatomic) UILabel *digestView; @property (strong, nonatomic) UILabel *offcialView; @property (strong, nonatomic) UIImageView *statusView; @property (strong, nonatomic) UILabel *timeView; @property (strong, nonatomic) UIImageView *silentView; @property (strong, nonatomic) UIImageView *secretChatView; @property (nonatomic, strong)BubbleTipView *bubbleView; @property (nonatomic, strong)WFCCConversationInfo *info; @property (nonatomic, strong)WFCCConversationSearchInfo *searchInfo; @property (nonatomic, assign, getter=isBig)BOOL big; @end