SuperPlayerSoundEffectBtnsView.h 707 B

1234567891011121314151617181920
  1. //
  2. // SuperPlayerSoundEffectBtnsView.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 SuperPlayerSoundEffectBtnsViewDeleagte <NSObject>
  10. @optional
  11. - (void)changeEffectOfBtnTag:(int)selectedEffectBtnTag;
  12. @end
  13. @interface SuperPlayerSoundEffectBtnsView : UIView<XXNibBridge>
  14. @property (weak, nonatomic) IBOutlet UIView *soundEffectBtnsView;
  15. @property (strong, nonatomic) IBOutletCollection(UIButton) NSArray *btnsArray;
  16. @property (assign, nonatomic) int selectBtnTag;
  17. @property (assign, nonatomic) id<SuperPlayerSoundEffectBtnsViewDeleagte>delegate;
  18. @end