iPhone - make VoiceOver announce label text change

2020-07-06 05:41发布

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.

2条回答
虎瘦雄心在
2楼-- · 2020-07-06 06:09

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 :)

查看更多
▲ chillily
3楼-- · 2020-07-06 06:15

Here is the Swift 4 version

UIAccessibility.post(notification: UIAccessibility.Notification.announcement, argument: "Your text")
查看更多
登录 后发表回答