SuperPlayerSoundEffectSliderView.h 707 B

12345678910111213141516171819202122
  1. //
  2. // SuperPlayerSoundEffectSliderView.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 16/12/19.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol SuperPlayerSoundEffectSliderViewDelage <NSObject>
  10. @optional
  11. - (void)accompanySliderHaveChangeValue:(CGFloat)accompanyValue;
  12. - (void)voiceSliderHaveChangeValue:(CGFloat)voiceValue;
  13. @end
  14. @interface SuperPlayerSoundEffectSliderView : UIView<XXNibBridge>
  15. @property (weak, nonatomic) IBOutlet UISlider *accompanySlider; //伴奏value调节slider
  16. @property (weak, nonatomic) IBOutlet UISlider *voiceSlider; //人声 Value调节Slider
  17. @property (assign,nonatomic)id<SuperPlayerSoundEffectSliderViewDelage> deleagte;
  18. @end