SoundMixView.h 560 B

12345678910111213141516171819202122
  1. //
  2. // SoundMixView.h
  3. // TXXiaoShiPinDemo
  4. //
  5. // Created by shengcui on 2018/7/23.
  6. // Copyright © 2018年 tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol SoundMixViewDelegate;
  10. @interface SoundMixView : UIView
  11. @property (weak, nonatomic) id<SoundMixViewDelegate> delegate;
  12. + (instancetype)instantiateFromNib;
  13. @end
  14. @protocol SoundMixViewDelegate <NSObject>
  15. @optional
  16. - (void)soundMixView:(SoundMixView *)view didSelectMixIndex:(NSInteger)index;
  17. - (void)soundMixView:(SoundMixView *)view didSelectVoiceChangeIndex:(NSInteger)index;
  18. @end