mhergon
mhergon

Reputation: 1678

App that works as iBeacon. How to be discovered even with the app has terminated?

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

Answers (2)

gnasher729
gnasher729

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

davidgyoung
davidgyoung

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

Related Questions