JXMessageCell.h 751 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // JXMessageCell.h
  3. // shiku_im
  4. //
  5. // Created by Apple on 16/10/10.
  6. // Copyright © 2016年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JXBaseChatCell.h"
  10. //添加Cell被长按的处理
  11. #import "QBPlasticPopupMenu.h"
  12. typedef void(^MsgTapBlock)(JXMessageObject *msg);
  13. @interface JXMessageCell : JXBaseChatCell{
  14. }
  15. @property (nonatomic,strong) JXEmoji * messageConent;
  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. @property (nonatomic, assign) BOOL isShareType;
  22. @property (nonatomic,copy) MsgTapBlock block;
  23. @end