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.
我想构建一个像 f.lux 这样的 iOs 应用程序。它根据白天改变设备的屏幕亮度。我知道我必须越狱我的设备。但我不知道如何实现这个应用程序。
请建议我任何有用的 API 来做到这一点。
提前致谢。
iOS 已经内置了该系统范围的功能:请参阅Settings > Brightness & Wallpaper,在Auto-Brightness下:
尽管可以以编程方式控制设备的亮度,但没有用于确定外部光线的公共 API,因此这是操作系统处理的功能。
试试这个(仅限 iOS5 及更高版本):
[[UIScreen mainScreen] setBrightness:1.0];
来自相关问题:通过代码调整屏幕亮度
浏览UIScreen的亮度属性,这是 IOS5 之后提供的新 API。