Skip to content

Instantly share code, notes, and snippets.

@cdzombak
Created May 21, 2014 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdzombak/5f098d746e66058ebc30 to your computer and use it in GitHub Desktop.
Save cdzombak/5f098d746e66058ebc30 to your computer and use it in GitHub Desktop.
Things that iOS takes into account for Background App Refresh

iOS tries to be clever about when it allows an app to refresh itself. It takes into account…

  • Whether the battery is nearly dead, and whether the phone is plugged in: it will refresh more frequently if the phone is fully charged or currently plugged in.
  • Whether you're on wifi or the cell network: it will refresh more frequently on wifi.
  • How frequently you usually open the app: if you open an app only once a day or every few days, it won't get refreshed very often.
  • When you typically open the app: if you usually open NYT Now around 7am, iOS will allow it to refresh around 6:45am or so.

So any combination of these could be affecting your NYT Now being up to date in the morning. Are you connected to wifi and plugged in overnight?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment