MHActionView.h 565 B

1234567891011121314151617181920212223
  1. //
  2. // MHActionView.h
  3. // TXLiteAVDemo_UGC
  4. //
  5. // Created by Apple on 2021/4/13.
  6. // Copyright © 2021 Tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class StickerDataListModel;
  10. @protocol MHActionViewDelegate <NSObject>
  11. @required
  12. - (void)handleStickerActionEffect:(NSString *)stickerContent sticker:(StickerDataListModel *)model action:(int)action;
  13. @end
  14. NS_ASSUME_NONNULL_BEGIN
  15. @interface MHActionView : UIView
  16. @property (nonatomic, weak) id<MHActionViewDelegate> delegate;
  17. - (void)getSticks;
  18. - (void)clearAllActionEffects;
  19. @end
  20. NS_ASSUME_NONNULL_END