// Copyright (c) 2019 Tencent. All rights reserved. #import #import "UGCKitTheme.h" @protocol UGCKitVideoRecordMusicViewDelegate -(void)onBtnMusicSelected; -(void)onBtnMusicStoped; -(void)onBGMValueChange:(CGFloat)percent; -(void)onVoiceValueChange:(CGFloat)percent; -(void)onBGMRangeChange:(CGFloat)startPercent endPercent:(CGFloat)endPercent; @end @interface UGCKitVideoRecordMusicView : UIView @property(nonatomic,weak) id delegate; -(instancetype)initWithFrame:(CGRect)frame needEffect:(BOOL)needEffect theme:(UGCKitTheme *)theme; -(void) resetVolume; -(void) resetCutView; @end