I use [[UIScreen mainScreen]setBrightness: ] (in sdk 5.0) to change the system background light in my app.
[[UIScreen mainScreen]setBrightness: ]
The following steps work with my app
Try this...
- (void)applicationWillResignActive:(UIApplication *)application { CGFloat brightness = [[NSUserDefaults standardUserDefaults] floatForKey:@"sysBright"]; [[UIScreen mainScreen] setBrightness:brightness]; }