Skip to content

Instantly share code, notes, and snippets.

@kevingriffin
Created June 8, 2014 02:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevingriffin/f74c475210db1e88d0e6 to your computer and use it in GitHub Desktop.
Save kevingriffin/f74c475210db1e88d0e6 to your computer and use it in GitHub Desktop.
override func awakeFromNib() {
let voices = NSSpeechSynthesizer.availableVoices() as Array<String>
var defaultRow = indexOfObject(voices, NSSpeechSynthesizer.defaultVoice())
if let row = defaultRow {
self.tableView.scrollRowToVisible(row)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment