I have looked into related topics which did not give correct answers.
The following code is running from within an observer of UIApplicationDidEnterBackgroundNotification
NSTimeInterval backgroundTimeRemaining = [[UIApplication sharedApplication] backgroundTimeRemaining];
NSLog(@"SHUTDOWN: OS allows=[%.2f]", backgroundTimeRemaining );
The output (sometimes) shows this:
SHUTDOWN: OS allows=[179769313486231570814527423731704356798070567525844996598917476803157260780028538760589558632766878171540458953514382464234321326889464182768467546703537516986049910576551282076245490090389328944075868508455133942304583236903222948165808559332123348274797826204144723168738177180919299881250404026184124858368.00]
It is not an issue of wrong printing format, as the same is shown when pointing to this number in the debugger.
I did not get it for iOS6/iOS7.04, only in iOS7.1. iPad 3.
Any idea please?