12345678910111213141516171819202122 |
- //
- // RQVoiceManager.h
- // YJZS
- //
- // Created by 张嵘 on 2022/2/25.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- #define RQ_VOICE_MANAGER [RQVoiceManager sharedManager]
- @interface RQVoiceManager : NSObject
- @property (nonatomic, readonly, assign) BOOL voiceSwitch;
- + (RQVoiceManager *)sharedManager;
- - (void)setVoiceSwitch:(BOOL)voiceSwitch;
- - (void)playString:(NSString *)str;
- @end
- NS_ASSUME_NONNULL_END
|