Is it possible to enable/disable VoiceOver speech/spoken hints on all items/entirely temporarily? In our App, we have a recording function and VoiceOver doesn’t stop talking during recording and the speech gets recorded.
I would like to know if there is a way.
2
Answers
Couldn't achieve above, but wrote a workaround. It no longer announces when recording is started (or when we enter recording view) but still works if user one presses a button.
The problem happened because when user presses Record, the app enters a new view, which VoiceOver automatically focuses the first accessibility element in that view.
Try using the
startsMediaSession
trait on the button that starts the recording , which will tell VoiceOver to stop announcing its speech output while the recording is being made.