How to change brightness in iOS 5 app?

前端 未结 4 1427
甜味超标
甜味超标 2020-12-14 18:23

How would I program the ability to change brightness in-app? I know that its possible as I have seen at least three apps that can do it. This would be very useful for my app

相关标签:
4条回答
  • 2020-12-14 18:32

    I have never tried it, but looking at the docs it should go like this:

    UIScreen *mainScreen = [UIScreen mainScreen];
    mainScreen.brightness = .5; //should set the brightness at 50%
    
    0 讨论(0)
  • 2020-12-14 18:39

    The UIScreen class has a new property called brightness.

    In addition, there's another property called wantsSoftwareDimming that (when set to YES) allows you to go below the lowest brightness supported by the hardware, because a special "dimming view" is overlaid over the screen to darken things even further.

    The brightness property takes a float from 0 to 1. So:

    • with wantsSoftwareDimming set to NO (the default), a brightness of 0 means "the darkest the hardware supports" and a brightness of 1 means "the brightest the hardware supports".
    • with wantsSoftwareDimming set to YES, a brightness of 0 means "the darkest the hardware supports PLUS darkening by overlaying a dimming view", and a brightness of 1 still means "the brightest the hardware supports".
    0 讨论(0)
  • 2020-12-14 18:41

    As others pointed out you can use

    [[UIScreen mainScreen] setBrightness:1.0];
    

    BUT be very careful because you will run into problems (talking from experience here) look at this: IOS5 setBrightness didn't work with applicationWillResignActive and this: Anyone been able to use [[UIScreen mainScreen] setBrightness] on background / exit?

    (I wish I had, when I discovered this thread/answer) :-(

    0 讨论(0)
  • 2020-12-14 18:45

    You can use either of these two:

    1. [[UIScreen mainScreen]setBrightness:1.0];

    2. GSEventSetBacklightLevel(0.5f); But this is a private API call, if you use it, your application will surely be rejected.

    0 讨论(0)
提交回复
热议问题