SBBrightnessController

From iPhone Development Wiki
Revision as of 19:08, 18 October 2013 by Vatsal Manot (talk | contribs) (Created page with "'''SBBrightnessController''' is a singleton class that is used to manipulate the brightness level of the screen. You can access the singleton instance with the nonstandard met...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

SBBrightnessController is a singleton class that is used to manipulate the brightness level of the screen. You can access the singleton instance with the nonstandard method as follows:

+ (id)sharedBrightnessController

Brightness Level Manipulation

The following method can be used to manipulate the brightness level, where allowed values are in the range from 0.0 to 1.0. An optional HUD can also be displayed.

-(void)_setBrightnessLevel:(float)level showHUD:(BOOL)hud;