禁用表列的可访问性
我有一个普通的 NSTableView 显示曲目列表。我专门设置了一个表格列来显示一个图标,指示当前正在播放的曲目。
我正在努力添加更全面的 VoiceOver 支持,但我不喜欢在选择表中的每一行时首先说的是“图像”。我想禁用该特定表列的可访问性。
我知道我可以通过子类化 NSTableView 和/或 NSTableColumn 来从accessibilityIsIgnored 返回 YES 来做到这一点。有没有办法在不子类化的情况下做到这一点?
I have a normal NSTableView that displays a list of tracks. I have dedicated a table column to displaying an icon that indicates which track is currently playing.
I'm working on adding fuller VoiceOver support and I don't like how when each row in the table is selected the first thing said is "image". I would like to disable accessibility for that specific table column.
I know I can do this by subclassing either NSTableView and/or NSTableColumn to return YES from accessibilityIsIgnored. Is there a way to do this without subclassing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不。不存在“setAccessibilityIsIgnored”这样的东西,因此您需要使用一个在询问 -accessibilityIsIgnored 时回答“是”的子类。
No. There is no such thing as "setAccessibilityIsIgnored" so you need to use a subclass that answers YES when asked -accessibilityIsIgnored.