Post

Replies

Boosts

Views

Created

Creating a list of voices available by locale
I'm trying to create a list that users can pick for the voice they want to use in my app. The code below works for US but if I change my locale settings to any other country, it fails to load any available voices even though I have downloaded other for other countries.. func voices() -> [String] {          AVSpeechSynthesisVoice.speechVoices().filter { $0.language == NSLocale.current.voiceLanguage }.map { $0.name }                    // AVSpeechSynthesisVoice.speechVoices().map { $0.name }     } If I list all voices available, I can select the voices for other countries that are loaded.
3
0
1.6k
Nov ’22
SwiftUI tab between text fields Monterey issue
Anyone having an issue with tabbing between text fields in Monterey in a catalyst app on Mac OS? Big Sur seems to work fine.
Replies
0
Boosts
0
Views
622
Activity
Oct ’21
ITMS-90889: 'Cannot be used with TestFlight
I'm not sure what type of provisioning profile I need to create for my Mac App to allow TestFlight. I am archiving the app through Xcode and allowing it to control the provisioning but it still does not work.
Replies
0
Boosts
0
Views
629
Activity
Dec ’21
Creating a list of voices available by locale
I'm trying to create a list that users can pick for the voice they want to use in my app. The code below works for US but if I change my locale settings to any other country, it fails to load any available voices even though I have downloaded other for other countries.. func voices() -> [String] {          AVSpeechSynthesisVoice.speechVoices().filter { $0.language == NSLocale.current.voiceLanguage }.map { $0.name }                    // AVSpeechSynthesisVoice.speechVoices().map { $0.name }     } If I list all voices available, I can select the voices for other countries that are loaded.
Replies
3
Boosts
0
Views
1.6k
Activity
Nov ’22