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 
 
    