In my application the root view controller is calling multiple APIs to get data and then display it in a collection view.
Can I use background fetch here, to get API data in advance, so that when the user launches the app, the content is already available and stored in the database?
If not available for some reason (let’s say background fetch time has expired or hasn't triggered yet), then I can get them from the API anyway.