TencentNavKit
TNKNavTTS.h
Go to the documentation of this file.
1//
2// TNKNavTTS.h
3// TencentNavKit
4//
5// Created by Tencent on 2018/3/1.
6// Copyright © 2018年 Tencent. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
15typedef enum _TNKNavTTSMode
16{
21
22
23//Default = 1,
24//Brief = 2,
25//Silent = 3,
26
30typedef enum _TNKNavTTSVoiceType {
34
38@interface TNKNavTTS : NSObject
39
43@property (nonatomic, copy, nonnull) NSString *ttsString;
44
48@property (nonatomic, assign) TNKNavTTSVoiceType voiceType;
49
53@property (nonatomic, assign) int type;
54
55@end
_TNKNavTTSMode
导航播报模式
Definition: TNKNavTTS.h:16
@ TNKNavTTSModeSilent
静音
Definition: TNKNavTTS.h:19
@ TNKNavTTSModeDefault
标准模式
Definition: TNKNavTTS.h:17
@ TNKNavTTSModeBrief
简洁
Definition: TNKNavTTS.h:18
enum _TNKNavTTSMode TNKNavTTSMode
导航播报模式
enum _TNKNavTTSVoiceType TNKNavTTSVoiceType
声音类型.
_TNKNavTTSVoiceType
声音类型.
Definition: TNKNavTTS.h:30
@ TNKNavTTSVoiceTypeNone
Definition: TNKNavTTS.h:31
@ TNKNavTTSVoiceTypeBeep
Definition: TNKNavTTS.h:32
TTS播报内容
Definition: TNKNavTTS.h:39
NSString * ttsString
播报的字符串内容.
Definition: TNKNavTTS.h:43
TNKNavTTSVoiceType voiceType
声音类型.
Definition: TNKNavTTS.h:48
int type
类型.
Definition: TNKNavTTS.h:53