I am curious as to whether the iOS cares if the task I scheduled failed to succeed, eg a network call to backend server. If I set the boolean to false for setTaskCompleted(success:), would the system retry my task at a later time?
Asked
Active
Viewed 86 times
1
-
The answer to this is probably covered in my answer to your [prior question](https://stackoverflow.com/a/73127550/1271826), namely, that a background task handler can schedule its next task. AFAIK, it will not retry on your behalf. Just schedule it yourself. – Rob Jul 26 '22 at 18:08