MHMakeUpView.h 469 B

1234567891011121314151617181920212223242526
  1. //
  2. // MHMakeUpView.h
  3. // TXLiteAVDemo_UGC
  4. //
  5. // Created by Apple on 2021/5/7.
  6. // Copyright © 2021 Tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol MHMakeUpViewDelegate <NSObject>
  11. @required
  12. - (void)handleMakeUpType:(NSInteger)type withON:(BOOL)On;
  13. - (void)takePhoto;
  14. - (void)clickPackUp;
  15. @end
  16. @interface MHMakeUpView : UIView
  17. @property (nonatomic, weak) id <MHMakeUpViewDelegate> delegate;
  18. @end
  19. NS_ASSUME_NONNULL_END