SuperPlayerSoundEffectPitchView.h 775 B

123456789101112131415161718192021
  1. //
  2. // SuperPlayerSoundEffectPitchView.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 SuperPlayerSoundEffectPitchViewDelegate <NSObject>
  10. @optional
  11. - (void)changeSoundEffectOfPitchValue:(NSInteger)pitchValue;
  12. @end
  13. @interface SuperPlayerSoundEffectPitchView : UIView<XXNibBridge>
  14. @property (weak, nonatomic) IBOutlet UIButton *pitchAddBtn; //音调 上调 btn
  15. @property (weak, nonatomic) IBOutlet UIButton *pitchRedue; //音调 下调 btn
  16. @property (weak, nonatomic) IBOutlet UILabel *pitchValueShowLab;//音调 数据显示lab
  17. @property (assign, nonatomic) NSInteger pitchInt;
  18. @property (assign,nonatomic)id<SuperPlayerSoundEffectPitchViewDelegate> delegate;
  19. @end