禁用表列的可访问性

发布于 2024-09-20 00:01:31 字数 249 浏览 6 评论 0原文

我有一个普通的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那小子欠揍 2024-09-27 00:01:31

不。不存在“setAccessibilityIsIgnored”这样的东西,因此您需要使用一个在询问 -accessibilityIsIgnored 时回答“是”的子类。

No. There is no such thing as "setAccessibilityIsIgnored" so you need to use a subclass that answers YES when asked -accessibilityIsIgnored.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文