Understanding how background fetch works
Any application that provides users with some form of data that updates over time can implement background fetch. An application that implements background fetch is woken up by iOS periodically, and it's given a small window of time to fetch and process new data that has become available. The OS expects applications to call a callback when they're done with fetching and processing the data. The application uses this callback to inform the OS about whether or not it retrieved new data. First, you will learn about background fetch at a high level. Then, you'll learn about some of the details involved with background fetch, and lastly, you will implement background fetch in the MustC app.
Looking at background fetch from a distance
Background fetchallows apps to download new content in the background without draining the battery because iOS manages the wake-up intervals as efficiently as possible. Since iOS will not allow your application to stay active...