iPhone MapKit:注释的可访问性
有谁知道如何将辅助功能标签添加到地图注释中?我尝试将其添加到 MKAnnotationView 和 MKAnnotation 但都不起作用。当选择注释时,VoiceOver 始终只读取“pin”,而原始地图应用程序在选择注释时会显示正确的标题。
谢谢并致以最诚挚的问候,
克里斯
does anybody know how it is possible to add an accessibility label to a map annotation? I've tried adding it to the MKAnnotationView and the MKAnnotation but neither works. VoiceOver always only reads "pin" when an annotation is selected, while the original Maps application features the correct title when selecting an annotation.
Thanks and best regards,
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的
-mapView:viewForAnnotation:
中设置返回的MKAnnotationView
对象的accessibilityValue
。In your
-mapView:viewForAnnotation:
set theaccessibilityValue
of your returnedMKAnnotationView
object.