What is the actaully value of a UIApplicationBackgroundFetchIntervalMinimum?

I want to customize the background selection for an iOS app.

I do:

func application( application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]? ) -> Bool { ... application.setMinimumBackgroundFetchInterval( UIApplicationBackgroundFetchIntervalMinimum) ... 

if I check and print UIApplicationBackgroundFetchIntervalMinimum in the debugger, it says 0 - what is the value really?

I tried looking at the api but no luck https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplication_Class/#//apple_ref/occ/instm/UIApplication/setMinimumBackgroundFetchInterval :

+7
ios ios7
source share
1 answer

Apple did not indicate how long UIApplicationBackgroundFetchIntervalMinimum , however in practice it is about 10 minutes.

+4
source share

All Articles