// // SuperPlayerSoundEffectSliderView.h // BuguLive // // Created by 岳克奎 on 16/12/19. // Copyright © 2016年 xfg. All rights reserved. // #import @protocol SuperPlayerSoundEffectSliderViewDelage @optional - (void)accompanySliderHaveChangeValue:(CGFloat)accompanyValue; - (void)voiceSliderHaveChangeValue:(CGFloat)voiceValue; @end @interface SuperPlayerSoundEffectSliderView : UIView @property (weak, nonatomic) IBOutlet UISlider *accompanySlider; //伴奏value调节slider @property (weak, nonatomic) IBOutlet UISlider *voiceSlider; //人声 Value调节Slider @property (assign,nonatomic)id deleagte; @end