UIScreen Brightness Property

前端 未结 2 1605
栀梦
栀梦 2020-12-20 20:32

At the moment I\'m trying to create an application to adjust the device\'s brightness. In iOS5, there is the new brightness property for mainScreen that allows you to set th

相关标签:
2条回答
  • 2020-12-20 21:13

    It sets the brightness for the device on iPad, and iPhone, just like in the Settings. It changes the brightness even when the app closes, it is kind of annoying. You have to reset it back to default programmatically in the appropriate method. I just created a tracing table app, Lite Box, and noticed it does not go back to the initial setting, even when app is force closed. You have to reopen app....set back to default, or go to your Settings and change it back.

    0 讨论(0)
  • 2020-12-20 21:15

    You will need to save the value you want to set yourself in your NSUserDefaults and call setBrightness: in your application delegate's applicationDidBecomeActive: method to restore the brightness.

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