Is it possible using VoiceOver on the iPhone to announce the updated text on a label if it changes?
This would be analogous to a live-region in ARIA.
Thanks.
You can make VoiceOver announce any text you like with:
UIAccessibilityPostNotification(UIAccessibilityAnnouncementNotification, @"Your text");
If a label should announce its text as soon as it is updated, simply extend the UILabel
and override the setText
method.
The .h File:
@interface UIVoicedLabel : UILabel {
}
@end
And its implementation:
#import "UIVoicedLabel.h"
@implementation UIVoicedLabel
- (void) setText:(NSString *)text {
// Set the text by calling the base class method.
[super setText:text];
// Announce the new text.
UIAccessibilityPostNotification(UIAccessibilityAnnouncementNotification, text);
}
@end
This worked perfectly for me :)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With