覆盖 TextField 中的 VoiceOver 消息 - iOS 辅助功能

Posted

技术标签:

【中文标题】覆盖 TextField 中的 VoiceOver 消息 - iOS 辅助功能【英文标题】:Override VoiceOver message in UITextField - iOS Accessibilty 【发布时间】:2014-12-22 11:06:27 【问题描述】:

我有一个 UITextField,其中包含“下午 24 英镑”,但我希望画外音说“每月 24 英镑”。通过设置:

[textView setAccessibilityLabel:@"£24 per month"];

VoiceOver 读出“每月 24 英镑,下午 24 英镑”。

如何阻止 UITextField 中的消息被读出?

【问题讨论】:

【参考方案1】:

您应该设置可访问性标签来描述文本字段(就好像它是一个键一样)及其值的可访问性值。

textField.accessibilityLabel = NSLocalizedString(@"Price", nil);
// textField.accessibilityValue = @"£24 per month";
textField.accessibilityValue = [self transformedPrice:textField.text];

-transformedPrice: 应该执行任何操作来将 textField 中的实际文本转换为应该在配音中使用的内容。 (别忘了本地化)

【讨论】:

不过没关系。文本仍在发音,而不是 accessibilityValue 或标签。【参考方案2】:

accessibilityValue 设置为nil 或空白字符串,将accessibilityLabel 设置为@"£24 per month"

【讨论】:

以上是关于覆盖 TextField 中的 VoiceOver 消息 - iOS 辅助功能的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Container 中垂直扩展 TextField 以覆盖 Flutter 中的所有可用空间

如何在不使用 MUIThemeProvider 的情况下覆盖 material-ui TextField 组件的样式?

Flutter TextField 自动完成覆盖

TableViewCell VoiceOver 辅助功能中的 UIButton

Android 键盘覆盖 Qml TextField

如何使用 React MUI 覆盖 TextField 组件的宽度?