How to implement geo location based push notifications ? please help me
but i have solution is How to use geo-based push notifications on iOS?
in this method there are given local based notification
UILocalNotification *localNotification = [[UILocalNotification alloc] init];
localNotification.alertBody = locationData;
localNotification.alertAction = @"Location data received";
localNotification.hasAction = YES;
[[UIApplication sharedApplication] presentLocalNotificationNow:localNotification];
but how to implement geo location for example: user enter into some area then the notification want to release
please help me with code or procedure to do this..