1234567891011121314151617181920212223242526272829 |
- //
- // TuningForkSettingView.h
- // KulexiuForStudent
- //
- // Created by 王智 on 2022/10/20.
- //
- #import <UIKit/UIKit.h>
- typedef void(^ForkSettingCallback)(NSInteger frequence, BOOL isSure);
- NS_ASSUME_NONNULL_BEGIN
- @interface TuningForkSettingView : UIView
- @property (nonatomic, assign) BOOL isFallingTone; // 是否降调
- @property (nonatomic, assign) NSInteger A4Frequence; // A4频率
- + (instancetype)shareInstance;
- - (void)forkSettingAction:(ForkSettingCallback)callback;
- - (void)showView;
- @end
- NS_ASSUME_NONNULL_END
|