Last active
February 13, 2019 02:54
-
-
Save myrickchow32/e8359bfdb5529b1014431aac8210ac31 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let utterance = AVSpeechUtterance(string: "Hello world") | |
| // Method 1: Directly by identifier | |
| utterance.voice = AVSpeechSynthesisVoice(identifier: "com.apple.ttsbundle.Karen-compact") | |
| // Method 2: By langauge code | |
| utterance.voice = AVSpeechSynthesisVoice(language: "en-AU") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment