12345678910111213141516171819202122232425262728293031323334 |
- //
- // YOUPAILCImageCollectionCell.h
- // LiveChat
- //
- // Created by 张灿 on 2018/8/28.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef enum : NSUInteger {
- review_zero,
- review_one,
- review_two,
- } ReviewStatus;
- @interface YOUPAILCImageCollectionCell : UICollectionViewCell
- @property (nonatomic, strong) UIImageView *youpaipimageView;
- @property (nonatomic, assign) NSInteger youpaipitem;
- @property (nonatomic, assign) BOOL youpaiphasImage;
- @property (nonatomic, strong) UIImageView *youpaipimagev;
- @property (nonatomic, strong) UIImageView *youpaipdefaultImgV;
- @property (nonatomic, strong) NSIndexPath *youpaipindexPath;
- @property (nonatomic, strong) UIButton *youpaipremoveBtn;
- @property (nonatomic, copy) void (^clickRemoveBtnBlock)(NSIndexPath *indexPath);
- //审核状态:1通过,0待审核,2,未通过
- /* <#Annotation#> */
- @property (assign, nonatomic) ReviewStatus youpaipreviewStatus;
- /* reviewView */
- @property (strong, nonatomic) UIImageView *youpaipreviewView;
- @end
|