Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只想在画外音模式打开时为我的应用程序中常用的按钮/控件设置一些快捷方式。此快捷方式应从外部键盘使用。
还有一种方法BOOL UIAccessibilityIsVoiceOverRunning();您应该订阅语音更改通知UIAccessibilityVoiceOverStatusChanged。
BOOL UIAccessibilityIsVoiceOverRunning();
UIAccessibilityVoiceOverStatusChanged
也许你应该创建一个 UIApplication 的子类来处理应用程序范围的快捷键。但这也取决于您需要什么,也许它足以让您处理视图控制器级别的事件。在这里您应该选择更适合您的解决方案。