I am trying to have my app execute functions in the background on a regular basis. As performFetchWithCompletionHandler
is too unpredictable I read about APNs.
Can I use APNs to periodically send a silent push notification to the device that would make the app execute my data fetching and analyzing functions then displaying a notification to the user accordingly?
Is it possible to have the server send the "wakeup signal" only and have the app display the notification by itself because of this?
I might have misunderstood the APNs logic entirely.