Is there an iPhone API that allows me to use VoiceOver directly in my application?

I would like the user to click the button directly from my application and read that on the screen using VoiceOver. Right now, my only option is to link the records of each page and just play them when the user clicks a button. VoiceOver will really simplify this process. Is it possible?

Thanks!
Thomas

+3
source share
3 answers

No, for more information on who wanted to do something similar, see this link.

+2
source

You can use this

if (UIAccessibilityIsVoiceOverRunning()) { UIAccessibilityPostNotification(UIAccessibilityAnnouncementNotification, @"Result has been computed."); } 

For more information about the API ...

http://developer.apple.com/library/ios/#documentation/uikit/reference/UIKitFunctionReference/Reference/reference.html

+3
source

I came across something similar. In order not to record a massive pile of sound ... you can use non-native text for speech, like the Flite Engine (which is free). Unfortunately, the native Voice Over remains private - and also captures the touches you hope to use for pressing buttons!

https://bitbucket.org/sfoster/iphone-tts

0
source

All Articles