如何在iOS上实现基于地理位置的推送通知?

iOS*_*per 5 notifications geolocation push-notification apple-push-notifications ios

如何实现基于地理位置的推送通知?请帮我

但我有解决方案是如何在iOS上使用基于地理位置的推送通知?

在这种方法中,给出了基于本地的通知

UILocalNotification *localNotification = [[UILocalNotification alloc] init];
    localNotification.alertBody = locationData;
    localNotification.alertAction = @"Location data received";
    localNotification.hasAction = YES;
    [[UIApplication sharedApplication] presentLocalNotificationNow:localNotification];
Run Code Online (Sandbox Code Playgroud)

但是如何实现地理位置例如:用户进入某个区域然后通知想要释放

请帮我用代码或程序来做这个..