SuperPlayerSoundEffectTitleView.h 991 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // SuperPlayerSoundEffectTitleView.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 SuperPlayerSoundEffectTitleViewDelegate <NSObject>
  10. @optional
  11. //恢复默认音效
  12. - (void)resumeDefaultValueOfSoundEffectPrama;
  13. //关闭 音效调节界面
  14. - (void)closeSoundEffectViewController;
  15. @end
  16. @interface SuperPlayerSoundEffectTitleView : UIView<XXNibBridge>
  17. @property (weak, nonatomic) IBOutlet UIButton *resumeDefaultValueBtn; //恢复默认btn
  18. @property (weak, nonatomic) IBOutlet UILabel *effectTitleLab; // 音效调节标题lab
  19. @property (weak, nonatomic) IBOutlet UIButton *closeEffectBtn; // 关闭音效调节的 btn
  20. #pragma mark - 恢复默认音效
  21. /**
  22. * @brief: 恢复默认音效
  23. *
  24. *
  25. * @discussion:现在只是恢复 音乐的伴奏 人声 pitch? effect?
  26. *
  27. */
  28. @property (assign,nonatomic)id<SuperPlayerSoundEffectTitleViewDelegate> delegate;
  29. @end