菜鸟教程小白 发表于 2022-12-12 15:53:00

iphone - VoiceOver 的 UISlider 可访问性特征?


                                            <p><p>要使 UISlider 在启用 VoiceOver 的情况下可用,需要哪些正确的 UIAccessibility 特征和处理程序?</p>

<p>是否有关于用户如何使用启用了 VoiceOver 的 UISlider 的任何描述?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这是我最终添加到 UISlider 以实现 VoiceOver 辅助功能的内容:</p>

<pre><code>[ mySlider setIsAccessibilityElement:YES ];
[ mySlider setAccessibilityLabel:@&#34;This slider controls blah blah etc....&#34; ];
</code></pre>

<p>并在控件事件 UIControlEventValueChanged 的​​目标方法中:</p>

<pre><code>[ mySlider setAccessibilityValue = [ NSString stringWithFormat:@&#34;Blah blah is set to %3.1f&#34;, mySlider.value];
</code></pre>

<p>启用 VoiceOver 后,在将焦点设置到该 slider 后,当我在其上上下滑动(而不是来回滑动)时,该 slider 会读出新值。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - VoiceOver 的 UISlider 可访问性特征?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/4915540/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/4915540/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - VoiceOver 的 UISlider 可访问性特征?