PhotoCollectionViewCell.h 451 B

1234567891011121314151617181920212223
  1. //
  2. // PhotoCollectionViewCell.h
  3. // LenzCameraNativeModuleForRN
  4. //
  5. // Created by 王昭威 on 2023/1/22.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @class PhotoListCellModel;
  10. @interface PhotoCollectionViewCell : UICollectionViewCell
  11. @property (nonatomic, readonly) UIView* coverView;
  12. @property (nonatomic, weak) IBOutlet UIImageView* imageView;
  13. @property (nonatomic, strong) PhotoListCellModel* cellModel;
  14. @end
  15. NS_ASSUME_NONNULL_END