HXPhotoEditChartletContentViewCell.h 560 B

12345678910111213141516171819
  1. //
  2. // HXPhotoEditChartletContentViewCell.h
  3. // photoEditDemo
  4. //
  5. // Created by Silence on 2020/7/2.
  6. // Copyright © 2020 Silence. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class HXPhotoEditChartletModel;
  11. @interface HXPhotoEditChartletContentViewCell : UICollectionViewCell
  12. @property (weak, nonatomic, readonly) IBOutlet UICollectionView *collectionView;
  13. @property (copy, nonatomic) NSArray<HXPhotoEditChartletModel *> *models;
  14. @property (copy, nonatomic) void (^ selectCellBlock)(UIImage *image);
  15. @end
  16. NS_ASSUME_NONNULL_END