I'm I obliged to pass either UIApplicationBackgroundFetchIntervalMinimum
or UIApplicationBackgroundFetchIntervalNever
?
Or Is it possible to pass a custom interval instead, for example 10 minutes:
UIApplication.sharedApplication().setMinimumBackgroundFetchInterval(600.0)
In my App, I have to download some new updated data while the app is in the background.
Then I'll use the new data to send a local notification to the user.