RhythmChooseView.h 490 B

12345678910111213141516171819202122232425
  1. //
  2. // RhythmChooseView.h
  3. // KulexiuSchoolStudent
  4. //
  5. // Created by 王智 on 2024/5/6.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "KSMetronomePlayer.h"
  9. typedef void(^RhythmChooseCallback)(RHYTHM_TYPE type);
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface RhythmChooseView : UIView
  12. + (instancetype)shareInstance;
  13. - (void)configWithRhythmChooseViewWithPreChoose:(RHYTHM_TYPE)preChoose displayView:(UIView *)displayView;
  14. - (void)chooseCallback:(RhythmChooseCallback)callback;
  15. @end
  16. NS_ASSUME_NONNULL_END