AVSpeechSynthesisVoice.FromLanguage(String) 方法

定义

检索给定 BCP-47 标记加上区域设置标识符的语音。

[Foundation.Export("voiceWithLanguage:")]
public static AVFoundation.AVSpeechSynthesisVoice FromLanguage (string language);
static member FromLanguage : string -> AVFoundation.AVSpeechSynthesisVoice

参数

language
String

内容待定。

此参数可以为 null

返回

属性

注解

此方法可以通过传递区域设置标识符和语言代码来检索区域设置的语音,如以下示例中所示,该示例使用澳大利亚口音说话:

var su = new AVSpeechUtterance("Once a jolly swagman camped by a billabong") {
    Rate = 0.33f,
    Voice = AVSpeechSynthesisVoice.FromLanguage("en-AU")
};

适用于