// // JXNewShakeCell.h // shiku_im // // Created by JayLuo on 2020/4/4. // Copyright © 2020 Reese. All rights reserved. // #import #import "JXBaseChatCell.h" //添加Cell被长按的处理 #import "QBPlasticPopupMenu.h" NS_ASSUME_NONNULL_BEGIN @interface JXNewShakeCell : JXBaseChatCell @property (nonatomic,strong) JXEmoji * messageConent; @property (nonatomic, strong) UIImageView *shakeImageView; @property (nonatomic, strong) UILabel *timeIndexLabel; @property (nonatomic, assign) NSInteger timerIndex; @property (nonatomic, strong) NSTimer *readDelTimer; @property (nonatomic, assign) BOOL isDidMsgCell; - (void)deleteMsg:(JXMessageObject *)msg; @end NS_ASSUME_NONNULL_END