// // MHSpecificAssembleView.h #import //#import "StickerDataListModel.h" #import @class MHBeautiesModel; //NS_ASSUME_NONNULL_BEGIN @protocol MHSpecificAssembleViewDelegate /** 特性 @param type 特性类型 */ - (void)handleSpecificWithType:(NSInteger)type; /** 水印 @param model 水印数据模型 */ - (void)handleWatermarkWithModel:(MHBeautiesModel *)model; /** 动作识别 */ - (void)handleSpecificStickerActionEffect:(NSString *)stickerContent sticker:(StickerDataListModel *)model action:(int)action; /** 哈哈镜 */ - (void)handleMagnityWithType:(NSInteger)type; /// 照相按钮 - (void)takePhoto; - (void)clickPackUp; @end @interface MHSpecificAssembleView : UIView @property (nonatomic, weak) id delegate; -(void)getActionSource; - (void)clearAllActionEffects; @end //NS_ASSUME_NONNULL_END