JXImageCell.h 743 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // JXImageCell.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. #import "FLAnimatedImageView.h"
  11. #import "FLAnimatedImage.h"
  12. @interface JXImageCell : JXBaseChatCell
  13. @property (nonatomic,strong) FLAnimatedImageView * chatImage;//cell里的UIView
  14. @property (nonatomic,assign) int currentIndex;//当前选中图片的序号
  15. @property (nonatomic,assign,getter=getImageWidth) int imageWidth;
  16. @property (nonatomic,assign,getter=getImageHeight) int imageHeight;
  17. @property (nonatomic, assign) BOOL isRemove;
  18. @property (nonatomic, strong) UILabel *imageProgress;
  19. - (void)deleteReadMsg;
  20. - (void)timeGo:(JXMessageObject *)msg;
  21. @end