In TableViewCell
, I have custom imageview which act as a radio button. This imageview has two states
- Selected
- Not Selected
By default I have given, Accessibility label as "Selected Checkbox" and "checkbox". Now I want to speak voice text as "new item selected" when it selects and "item deselected" when deselected.
Can we give all four different label? How can I get the same.
Updated: I tried using
UIAccessibilityPostNotification(UIAccessibilityAnnouncementNotification,@"text")
but it skips the text which need to speak.