// // MHActionView.h // TXLiteAVDemo_UGC // // Created by Apple on 2021/4/13. // Copyright © 2021 Tencent. All rights reserved. // #import @class StickerDataListModel; @protocol MHActionViewDelegate @required - (void)handleStickerActionEffect:(NSString *)stickerContent sticker:(StickerDataListModel *)model action:(int)action; @end NS_ASSUME_NONNULL_BEGIN @interface MHActionView : UIView @property (nonatomic, weak) id delegate; - (void)getSticks; - (void)clearAllActionEffects; @end NS_ASSUME_NONNULL_END