JXNewShakeCell.h 705 B

12345678910111213141516171819202122232425262728
  1. //
  2. // JXNewShakeCell.h
  3. // shiku_im
  4. //
  5. // Created by JayLuo on 2020/4/4.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JXBaseChatCell.h"
  10. //添加Cell被长按的处理
  11. #import "QBPlasticPopupMenu.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface JXNewShakeCell : JXBaseChatCell
  14. @property (nonatomic,strong) JXEmoji * messageConent;
  15. @property (nonatomic, strong) UIImageView *shakeImageView;
  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