共用方式為


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")
};

適用於