iPhone - 让 VoiceOver 宣布标签文本更改

发布于 2024-10-29 03:59:28 字数 95 浏览 1 评论 0原文

如果标签上的文本发生更改,是否可以使用 iPhone 上的 VoiceOver 来宣布更新后的文本?

这类似于 ARIA 中的实时区域。

谢谢。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

Smile简单爱 2024-11-05 03:59:28

您可以让 VoiceOver 播报您喜欢的任何文本:

UIAccessibilityPostNotification(UIAccessibilityAnnouncementNotification, @"Your text");

如果标签应在更新后立即播报其文本,只需扩展 UILabel 并重写 setText 方法即可。

.h 文件:

@interface UIVoicedLabel : UILabel {

}

@end

及其实现:

#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

这对我来说非常有效:)

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

微凉徒眸意 2024-11-05 03:59:28

这是 Swift 4 版本

UIAccessibility.post(notification: UIAccessibility.Notification.announcement, argument: "Your text")

Here is the Swift 4 version

UIAccessibility.post(notification: UIAccessibility.Notification.announcement, argument: "Your text")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文