YOUPAIBrowserPhotoCell.h 598 B

123456789101112131415161718192021222324
  1. //
  2. // YOUPAIBrowserPhotoCell.h
  3. // MSYOUPAI
  4. //
  5. // Created by xiaohaoran on 2022/3/7.
  6. // Copyright © 2022 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YOUPAIBrowserPhotoCell : UICollectionViewCell
  11. @property (nonatomic, strong) UIImageView *imageView;
  12. @property (nonatomic, strong) UIImageView *videoImageView;
  13. @property (nonatomic, strong) UIButton *deleteBtn;
  14. @property (nonatomic, strong) UILabel *gifLable;
  15. @property (nonatomic, assign) NSInteger row;
  16. @property (nonatomic, strong) id asset;
  17. - (UIView *)snapshotView;
  18. @end
  19. NS_ASSUME_NONNULL_END