I using accelerometer in my app and i’m using [UIApplication sharedApplication].idleTimerDisabled = YES; to prevent the device to sleep. It works fine, but this way the screen is always on full bright, there is a way to prevent the device to sleep and keep the energy economy mode on?
When idleTimerDisabled is stetted to NO the device enter in the energy economy mode before sleep, i just want to prevent the device to sleep and keep the energy economy. There is a way to do that?
I using accelerometer in my app and i’m using [UIApplication sharedApplication].idleTimerDisabled = YES; to
Share
There’s a property of
UIScreeninstances,brightness, that is likely what you want. Check out the documentation ofUIScreen‘sbrightnessproperty here.Try:
NOTE: As I was posting, DarkXphenomenon posted a link to an SO question whose asker gave the exact same solution. DarkXphenomenon is quick on the draw.