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.
我正在制作一个时钟应用程序,我想知道如何检查当前的亮度级别设置,以及如何使用 UISlider 在 xcode 4 中调整我的应用程序中的亮度,而不是告诉用户去他们的 iphone/ipad设置应用程序并在那里调整亮度?我找不到任何代码/api。
我在 appstore 中看到过不少时钟应用程序,用户可以通过上下移动手指来调整显示屏的亮度。
您正在寻找UIScreen 的亮度属性。
示例代码:
[UIScreen mainScreen].brightness = 0.5;
在 iOS 5.0 及更高版本中可用。