如何实施基于地理位置的推送通知?请帮帮我
但我的解决方案是How to use geo-based push notifications on iOS?
在此方法中,给出了基于本地的通知
UILocalNotification *localNotification = [[UILocalNotification alloc] init];
localNotification.alertBody = locationData;
localNotification.alertAction = @"Location data received";
localNotification.hasAction = YES;
[[UIApplication sharedApplication] presentLocalNotificationNow:localNotification];
但是如何实现地理位置例如:用户进入某个区域然后通知要发布
请帮我处理代码或程序。