HXPhotoEditChartletPreviewView.h 509 B

123456789101112131415161718
  1. //
  2. // HXPhotoEditChartletPreviewView.h
  3. // photoEditDemo
  4. //
  5. // Created by Silence on 2020/7/1.
  6. // Copyright © 2020 Silence. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class HXPhotoEditChartletListViewCell, HXPhotoEditChartletModel;
  11. @interface HXPhotoEditChartletPreviewView : UIView
  12. @property (weak, nonatomic) HXPhotoEditChartletListViewCell *cell;
  13. + (instancetype)showPreviewWithModel:(HXPhotoEditChartletModel *)model atPoint:(CGPoint)point;
  14. @end
  15. NS_ASSUME_NONNULL_END