问题
How to implement geo location based push notifications ? I have been referred to the following solution: How to use geo-based push notifications on iOS?
In the above link they have given local notification based solution:
UILocalNotification *localNotification = [[UILocalNotification alloc] init];
localNotification.alertBody = locationData;
localNotification.alertAction = @"Location data received";
localNotification.hasAction = YES;
[[UIApplication sharedApplication] presentLocalNotificationNow:localNotification];
But how to implement it for geo location?
for example: if user enters some area then push notification via apns
来源:https://stackoverflow.com/questions/34492420/how-to-implement-push-notification-based-on-geo-location-in-objective-c