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 the screen brightness. I'm using the following code:
[[UIScreen mainScreen] setBrightness:1.0];
However this seems to only work until the device is locked, and doesn't get saved in settings. Is there something I'm doing wrong?