What I need to do is fetching content on iOS
from network at a specific time (let's say 21:00) on a daily basis.
If I use background fetch
approach: there is no guarantee that fetching happens at a specific time. Also, there is no guarantee that it happens at any time at all since if user kills the app explicitly no fetch occurs.
If I use local notifications
: I cannot execute anything as my app does not wake up from background state
, therefore no fetch at all.
Is there any way to achieve that on iOS
? Am I missing a point about local notifications
or background fetch
?