What happens if I call beginBackgroundTaskWithExpirationHandler
periodically every few minutes and never call endBackgroundTask
?
Is there any limit for creating background tasks?
What happens if i call
beginBackgroundTaskWithExpirationHandler
periodically every minutes and never callendBackgroundTask
beginBackgroundTaskWithExpirationHandler:
does not actually "begin" a task. It might be better thought of as "register..." rather than "begin...." You're just telling the system that you're in the middle of doing something that would like to complete if that's ok.is there any limit for creating background task?