Created
October 18, 2013 21:30
-
-
Save lobrien/7048562 to your computer and use it in GitHub Desktop.
There are a lot of voices available for iOS 7...
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
var ss = new AVSpeechSynthesizer(); | |
foreach(var voice in AVSpeechSynthesisVoice.GetSpeechVoices()) | |
{ | |
var su = new AVSpeechUtterance("Microphone check. One, two, one two.") { | |
Rate = AVSpeechUtterance.DefaultSpeechRate, | |
Voice = voice | |
}; | |
ss.SpeakUtterance(su); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment