将 UIScreen 亮度设置回用户设置
在我的iPhone应用程序的一些视图中,我实用地设置屏幕亮度,如下所示:
[[UIScreen mainScreen] setBrightness:1.0];
然后
-(void)viewWillDisappear:(BOOL)animated
{
}
我想将其设置回其原始值。为此,在将当前 UIScreen 亮度值设置为 1 之前,如何获取当前 UIScreen 亮度值。
tanx
in some of the views of my iPhone app I set the screen brightness pragmatically like:
[[UIScreen mainScreen] setBrightness:1.0];
then on
-(void)viewWillDisappear:(BOOL)animated
{
}
I will like to set it back to its original value. To do this how do I get the current UIScreen brightness value before I set it to 1.
tanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“亮度”是一个属性,因此它有一个相应的访问器。所以只需使用:
"brightness" is a property, so it has a corresponding accessor. So just use: