YOUPAILCImageCollectionCell.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // YOUPAILCImageCollectionCell.h
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/8/28.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef enum : NSUInteger {
  10. review_zero,
  11. review_one,
  12. review_two,
  13. } ReviewStatus;
  14. @interface YOUPAILCImageCollectionCell : UICollectionViewCell
  15. @property (nonatomic, strong) UIImageView *youpaipimageView;
  16. @property (nonatomic, assign) NSInteger youpaipitem;
  17. @property (nonatomic, assign) BOOL youpaiphasImage;
  18. @property (nonatomic, strong) UIImageView *youpaipimagev;
  19. @property (nonatomic, strong) UIImageView *youpaipdefaultImgV;
  20. @property (nonatomic, strong) NSIndexPath *youpaipindexPath;
  21. @property (nonatomic, strong) UIButton *youpaipremoveBtn;
  22. @property (nonatomic, copy) void (^clickRemoveBtnBlock)(NSIndexPath *indexPath);
  23. //审核状态:1通过,0待审核,2,未通过
  24. /* <#Annotation#> */
  25. @property (assign, nonatomic) ReviewStatus youpaipreviewStatus;
  26. /* reviewView */
  27. @property (strong, nonatomic) UIImageView *youpaipreviewView;
  28. @end