JXFaceCustomCell.h 834 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // JXFaceCustomCell.h
  3. // shiku_im
  4. //
  5. // Created by JayLuo on 2019/12/13.
  6. // Copyright © 2019 Reese. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. #import "JXBaseChatCell.h"
  11. #import "FLAnimatedImageView.h"
  12. #import "FLAnimatedImage.h"
  13. NS_ASSUME_NONNULL_BEGIN
  14. @interface JXFaceCustomCell : JXBaseChatCell
  15. @property (nonatomic,strong) FLAnimatedImageView * chatImage;//cell里的UIView
  16. @property (nonatomic,assign) int currentIndex;//当前选中图片的序号
  17. @property (nonatomic,assign,getter=getImageWidth) int imageWidth;
  18. @property (nonatomic,assign,getter=getImageHeight) int imageHeight;
  19. @property (nonatomic, assign) BOOL isRemove;
  20. @property (nonatomic, strong) UILabel *imageProgress;
  21. - (void)deleteReadMsg;
  22. - (void)timeGo:(JXMessageObject *)msg;
  23. @end
  24. NS_ASSUME_NONNULL_END