Top "Background-fetch" questions

Background fetch is a background execution mode on iOS 7 and newer, used for apps that regularly update their content by contacting a server can register with the system and be launched periodically to retrieve that content in the background.

How to troubleshoot iOS background app fetch not working?

I am trying to get iOS background app fetch to work in my app. While testing in Xcode it works, …

ios objective-c xcode background-fetch
iOS10 Background fetch

I have tried to implement background fetch, to hopefully can wake the app from time to time. I have done …

ios swift background-fetch
iOS background fetch custom interval

I read all Apple documentation about background fetch and currently I'm using it like this: [[UIApplication sharedApplication] setMinimumBackgroundFetchInterval:minimumBackgroundFetchInterval]; I …

ios objective-c background-fetch
Background fetch is not working after killing the app

I'm trying to get data from url with background fetch. My func tries to get data and if there is …

ios swift background-process background-fetch
Swift : How to run a GET call in background and then show notifications

I am making an app which displays data from a Website/Blog. User can follow any author. Requirement is , when …

ios swift notifications background-fetch
How to fetch data in background every hour in Swift even the app is terminated?

I am making an app that provides functionality to fetch data every hour. It fetches data even when the app …

ios swift ios9 background-fetch
I get a warning saying that the completion handler was never called When I simulate a Background fetch

I followed all the steps in order to set up the background fetch but I'm suspecting that I made a …

ios swift background-fetch
How to run operations in background while an iOS application is in foreground

I have a JSON file populated with strings data in Documents Directory. In user Interface of application there is a …

ios swift synchronization background-fetch