ios - 在 MKMapView 上禁用可访问性 (VoiceOver)
<p><p>我想要做的是禁用 <code>MKMapView</code> 上的可访问性。
实际上 <code>VoiceOver</code> 会读取 map 上的所有元素:道路、POI ecc。抄送。</p>
<p>所以我尝试了这个</p>
<pre><code>
</code></pre>
<p>但不工作......如何实现这一目标?我错过了什么?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>由于 <a href="http://a11y-guidelines.orange.com/mobile_EN/dev-ios.html#hide-elements" rel="noreferrer noopener nofollow">`accessibilityElementsHidden'</a>,您的 'MKMapView' 可能会被视为一个容器,其元素不应被 VoiceOver 看到。属性。</p>
<pre><code>@IBOutlet weak var map: MKMapView!
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
map.accessibilityElementsHidden = true
}
</code></pre>
<p>使用上面代码片段中显示的此属性<strong>在 MKMapView 上禁用 VoiceOver</strong>。</p></p>
<p style="font-size: 20px;">关于ios - 在 MKMapView 上禁用可访问性 (VoiceOver),我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/34992715/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/34992715/
</a>
</p>
页:
[1]