There is a dwell event for Android devices to detect user had stopped moving and standing in region . But there is no event for iOS. Are there any idea how to catch this event ?
Asked
Active
Viewed 1,490 times
4
-
4Perhaps just determine when they enter a region via `CLLocationManager`, then set a timer, and if you haven't gotten an "exited region" event by the time the timer goes off, the user is dwelling. Not sure how well this would work when your app is in the background, but I'm sure it's possible. :) – Eric Galluzzo Jan 07 '16 at 14:02
-
the dwell time is about not triggering enter/exit events for a geofence. – Brill Pappin Jun 01 '20 at 13:14
1 Answers
1
Seems like you are looking for the Visit API. Keep in mind, this only works with iOS 8+. Here is link about it: https://developer.apple.com/library/ios/documentation/CoreLocation/Reference/CLVisit_class/

Pablo Baxter
- 2,144
- 1
- 17
- 36