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