Notification after certain dwell time

Is this possible for ios? I would only like the receive a notification after user x has been in the area for x amount of time.

The easiest way to implement that would be:

  1. In didEnterRegion, scheduleLocalNotification and set the fireDate property of the UILocalNotification object to “now + X minutes”
  2. If the user stays in the region for X minutes, the notification will fire.
  3. If they leave before the notification fires, didExitRegion will get called, and in there you can cancelLocalNotification.
1 Like