菜鸟教程小白 发表于 2022-12-13 12:59:40

ios - 如何使用 VoiceOver 逐段阅读 UITextView?


                                            <p><p>我正在为盲人编写一个应用程序,并希望在其主页上放置一些说明。该说明是一个多段静态文本片段。我把它放在一个 UITextView 中。 </p>

<p>我希望盲人用户能够使用 VoiceOver 逐段阅读说明。然而,当用户将 VoiceOver 焦点移到 UITextView 上时,VoiceOver 总是将指令作为一个整体来阅读。我的设备是装有 iOS 7 的 iPad 2 和 iPhone 5s。</p>

<p>那么,有没有什么方法可以设置我的 UITextView,以便 VoiceOver 用户可以逐段阅读文本?如果 UITextView 无法做到这一点,还有哪些其他选择?我真的必须使用 UITableView 吗?</p>

<p>谢谢!</p>

<p>乔</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>VoiceOver 用户,而不是您,决定一次阅读多少文本。您可以通过子类化 <code>UITextView</code> 并实现 <a href="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAccessibilityContainer_Protocol/index.html" rel="noreferrer noopener nofollow">the <code>UIAccessibilityContainer</code> informal protocol</a> 来覆盖它.但是,这对于 VoiceOver 用户来说是不直观的,因此我建议您避免使用它。一些 VoiceOver 用户可以听到大量文本阅读得非常快,如果您人为地强制阅读在段落之间停止,他们会感到沮丧。</p>

<p><code>TTTAtributedLabel</code> 是一个支持超链接的开源标签库,它覆盖了这些方法以使链接可访问。您不妨<a href="https://github.com/TTTAttributedLabel/TTTAttributedLabel/blob/master/TTTAttributedLabel/TTTAttributedLabel.m#L1413-L1480" rel="noreferrer noopener nofollow">review the relevant source code</a>如果您决定违背我的建议继续实现此实现。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何使用 VoiceOver 逐段阅读 UITextView?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/35446459/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/35446459/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何使用 VoiceOver 逐段阅读 UITextView?