JXReplyCell.h 703 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // JXReplyCell.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 2019/3/30.
  6. // Copyright © 2019年 Reese. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "JXBaseChatCell.h"
  10. //添加Cell被长按的处理
  11. #import "QBPlasticPopupMenu.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface JXReplyCell : JXBaseChatCell
  14. @property (nonatomic,strong) JXEmoji * messageConent;
  15. @property (nonatomic,strong) JXEmoji * replyConent;
  16. @property (nonatomic, strong) UILabel *timeIndexLabel;
  17. @property (nonatomic, assign) NSInteger timerIndex;
  18. @property (nonatomic, strong) NSTimer *readDelTimer;
  19. @property (nonatomic, assign) BOOL isDidMsgCell;
  20. - (void)deleteMsg:(JXMessageObject *)msg;
  21. @end
  22. NS_ASSUME_NONNULL_END