MHPrintView.h 313 B

12345678910111213141516171819
  1. //
  2. // MHPrintView.h
  3. #import <UIKit/UIKit.h>
  4. @class MHBeautiesModel;
  5. NS_ASSUME_NONNULL_BEGIN
  6. @protocol MHPrintViewDelegate <NSObject>
  7. - (void)handlePrint:(MHBeautiesModel *)model;
  8. @end
  9. @interface MHPrintView : UIView
  10. @property (nonatomic, weak) id<MHPrintViewDelegate> delegate;
  11. @end
  12. NS_ASSUME_NONNULL_END