다음을 통해 공유


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

적용 대상