How do I implement location-based location alerts on iOS?

How do I implement location-based location alerts? Please help me

but I have a solution How do I use location-based push notifications in iOS?

this method gives local 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 a geographical location, for example: the user enters into some area, then the notification wants to release

please help me with a code or procedure to do this.

+5
source share

All Articles