AVSpeechSynthesisVoice.FromLanguage(String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
擷取指定 BCP-47 標記加上地區設定識別碼的語音。
[Foundation.Export("voiceWithLanguage:")]
public static AVFoundation.AVSpeechSynthesisVoice FromLanguage (string language);
static member FromLanguage : string -> AVFoundation.AVSpeechSynthesisVoice
參數
傳回
- 屬性
備註
這個方法可以藉由傳遞地區設定識別碼以及語言代碼來擷取地區設定的語音,如下列範例所示,其會以澳大利亞輔色說話:
var su = new AVSpeechUtterance("Once a jolly swagman camped by a billabong") {
Rate = 0.33f,
Voice = AVSpeechSynthesisVoice.FromLanguage("en-AU")
};