12345678910111213141516171819202122232425 |
- //
- // RhythmChooseView.h
- // KulexiuSchoolStudent
- //
- // Created by 王智 on 2024/5/6.
- //
- #import <UIKit/UIKit.h>
- #import "KSMetronomePlayer.h"
- typedef void(^RhythmChooseCallback)(RHYTHM_TYPE type);
- NS_ASSUME_NONNULL_BEGIN
- @interface RhythmChooseView : UIView
- + (instancetype)shareInstance;
- - (void)configWithRhythmChooseViewWithPreChoose:(RHYTHM_TYPE)preChoose displayView:(UIView *)displayView;
- - (void)chooseCallback:(RhythmChooseCallback)callback;
- @end
- NS_ASSUME_NONNULL_END
|