Remove fired Location-Based notification when user exits region
问题 I've setup (default iOS8) location-based notifications for my app. UILocalNotification *notification = [[UILocalNotification alloc] init]; notification.regionTriggersOnce = NO; notification.userInfo = @{ @"notification_id" : @"someID" }; notification.region = region; notification.alertBody = alertBody; [[UIApplication sharedApplication] scheduleLocalNotification:notification]; When a user enters the specified region, the notification is shown in the NotificationCenter correctly. However, I