Search code examples
iphoneiosuikitvoiceover

iOS determine if VoiceOver is still talking


Is there a way to determine whether VoiceOver is currently announcing and when it stops. I've tried UIAccessibilityVoiceOverStatusChanged but my understanding is that this is only if you switch VoiceOver on or off. Any help would be greatly appreciated. thanks.


Solution

  • These are all the Accessibility booleans that I found in the documentation:

    UIAccessibilityPostNotification
    UIAccessibilityIsVoiceOverRunning
    UIAccessibilityIsMonoAudioEnabled
    UIAccessibilityIsClosedCaptioningEnabled
    UIAccessibilityRegisterGestureConflictWithZoom
    

    I don't think that there are any booleans to do what you are talking about.