Reputation: 171
I am monitoring Significant Location Changes (SLC) even when the app is not in the foreground. It is working as expected and the app is woken up even when it is not running to handle the SLC. However, I would like to understand better how relaunching the app actually happens, name I would like to know what happens in the following scenario:
What happens in this case?
Thanks for helping me understand this in advance.
Upvotes: 0
Views: 125
Reputation: 14687
There can be only an instance of the application so #2 is out of the question.
Since the app is already running (background mode), the applicationDidBecomeActive
will be called
Upvotes: 0