// // JXMessageCell.h // shiku_im // // Created by Apple on 16/10/10. // Copyright © 2016年 Reese. All rights reserved. // #import #import "JXBaseChatCell.h" //添加Cell被长按的处理 #import "QBPlasticPopupMenu.h" typedef void(^MsgTapBlock)(JXMessageObject *msg); @interface JXMessageCell : JXBaseChatCell{ } @property (nonatomic,strong) JXEmoji * messageConent; @property (nonatomic, strong) UILabel *timeIndexLabel; @property (nonatomic, assign) NSInteger timerIndex; @property (nonatomic, strong) NSTimer *readDelTimer; @property (nonatomic, assign) BOOL isDidMsgCell; @property (nonatomic, assign) CGFloat kuangHHH; - (void)deleteMsg:(JXMessageObject *)msg; @property (nonatomic, assign) BOOL isShareType; @property (nonatomic,copy) MsgTapBlock block; @end