使 UIWebView 可访问

发布于 2024-11-19 15:49:10 字数 163 浏览 3 评论 0原文

简单的问题。

我有一个 UIWebView。它显示带有一些标题的纯 html 文本。我希望 VoiceOver 读取此 Web 视图的内容。

如果我可以利用 VoiceOver 的转子让用户使用标题滚动浏览内容,那就太好了,但我还不会贪婪。

任何意见都会受到赞赏。

Simple question.

I have a UIWebView. It displays plain html text with a few headers. I want VoiceOver to read the content of this web view.

It would also be nice if I could make use of VoiceOver's rotor to let the user scroll through content using headers, but I won't get greedy yet.

Any input is appreciated.

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

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

发布评论

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

评论(4

雨落星ぅ辰 2024-11-26 15:49:10

我了解到:如果包含 UIWebView 的视图被标记为启用辅助功能,则语音将不会传递到 UIWebView。

What I have learned: If the view that the UIWebView is contained in is marked as accessibility enabled then voiceover will not pass through to the UIWebView.

初懵 2024-11-26 15:49:10

UIWebView 应该可以通过 VoiceOver 访问,而无需您执行任何操作。

UIWebView should be accessible with VoiceOver without you doing anything.

铁憨憨 2024-11-26 15:49:10

来自 iOS 开发人员文档以了解可访问性。

如果用户界面元素将自身报告为可访问性元素,则该元素是可访问的。虽然可访问性不足以使用户界面元素对 VoiceOver 用户有用,但它代表了使应用程序可访问性的过程的第一步。

您可以执行以下操作(或手动设置标签):

[_view setIsAccessibilityElement:YES];

这里有很多信息。我建议你咨询一下这个。

http://developer.apple.com/library/ios/#documentation/UserExperience/Conceptual/iPhoneAccessibility/Making_Application_Accessible/Making_Application_Accessible.html#//apple_ref/doc/uid/

From the iOS developer documentation for accessibility.

A user interface element is accessible if it reports itself as an accessibility element. Although being accessible is not enough to make a user interface element useful to VoiceOver users, it represents the first step in the process of making your application accessible.

You can do something like this (or manually set a label):

[_view setIsAccessibilityElement:YES];

There is a lot of information here. I suggest that you consult this.

http://developer.apple.com/library/ios/#documentation/UserExperience/Conceptual/iPhoneAccessibility/Making_Application_Accessible/Making_Application_Accessible.html#//apple_ref/doc/uid/

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