I have this next issue that I'll appreciate your help with.
My desired behavior:
1. User press a button (Voice Over is active).
2. VoiceOver reading my information.
1. User press a button (Voice Over is active).
2. VoiceOver reading the button accessibility label.
More details:
I'm using buttonTouchDown action which call this VoiceOver function:
UIAccessibilityPostNotification(UIAccessibilityAnnouncementNotification, "my information")
for using VoiceOver to speech my information whenever the user click this button.
I think what happens here is that VoiceOver transmit his own accessibility label reading which overrides my information before it has even started being read.
It worth saying the if the user clicks and holds the button for about a second or two my information is being read.
Tried changing to buttonTouchDown action but still no luck...
Any suggestions?
Thanks in advance.
Gil.