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

时间:2015-09-15 07:43:19

标签: ios notifications push-notification geolocation apple-push-notifications

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

但我的解决方案是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];

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

请帮我处理代码或程序。

0 个答案:

没有答案