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.
您知道在可访问性方面,用户可以将主页按钮设置为三次单击并使其成为“反色模式”吗?您的应用程序有没有办法检测手机是否处于反色模式?谢谢。
是的,而且很简单。你可以打电话
UIAccessibilityIsInvertColorsEnabled();
它返回 aBOOL是否当前打开了反转颜色。
BOOL
你也可以观察
UIAccessibilityInvertColorsStatusDidChangeNotification
当用户打开或关闭反色时得到通知。