1234567891011121314151617181920212223242526272829 |
- //
- // NYVoiceManager.h
- // jiaPei
- //
- // Created by Ning.ge on 2023/7/26.
- // Copyright © 2023 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- #define NY_VOICE_MANAGER [NYVoiceManager sharedManager]
- @interface NYVoiceManager : NSObject
- + (NYVoiceManager *)sharedManager;
- - (void)ny_configureTTSVoiceDK;
- //开播合成播放
- - (void)startPayVoiceActionText:(NSString *)text;
- //暂停合成播放
- - (void)pausePayVoiceAction;
- //停止合成播放
- - (void)stopPayVoiceAction;
- @end
- NS_ASSUME_NONNULL_END
|