Reputation: 1678
I'm trying to use iBeacon in background mode and works fine, but I want that the app works when has been terminated by the system. It's possible to do this?
Thanks!
Upvotes: 3
Views: 751
Reputation: 52556
It should just work, unless the user removes the app. It's not the app itself that shows the beacon, it is the operating system showing the beacon on behalf of the app. That doesn't change when the OS terminates the app, only if the user does it.
Upvotes: 0
Reputation: 64941
It is possible to write your app so it launches into the background when LocationServices sees an iBeacon, even if your app is terminated. See my answer here: https://stackoverflow.com/a/19128781/1461050
Upvotes: 2