I have custom UIControl subclass that acts as toggle button. When the user taps it the button toggles a feature on off.
VoiceOver reads the value and hint like suggested by Apple:
self.accessibilityValue = @"Toggle alarm on off";
self.accessibilityHint = @"Double-tap to toggle setting";
But when user double taps to goggle, VoiceOver says nothing. I noticed in Settings app VoiceOver speaks aloud things like "On", "Off". How do I tell VoiceOver to speak what happened?