ios - iBeacon send notification for multiple beacon -
scenario i have 3 merchants in same street. each merchant hold beacon. want end users notify once go near ( clproximitynear ) . source code appdelegate.m self.ibeaconmanager = [[cllocationmanager alloc] init]; self.ibeaconmanager.delegate = self; nsuuid *proximityuuid = [[nsuuid alloc] initwithuuidstring:@"b9407f30-f5f8-466e-aff9-25556b57fe6d"]; clbeaconregion *region = [[clbeaconregion alloc] initwithproximityuuid:proximityuuid identifier:@"beaconidentifier"]; region.notifyentrystateondisplay = yes; [self.ibeaconmanager startmonitoringforregion:region]; delegate - (void)locationmanager:(cllocationmanager *)manager didstartmonitoringforregion:(clregion *)region { [self.ibeaconmanager requeststateforregion:region]; } - (void)locationmanager:(cllocationmanager *)manager diddeterminestate:(clregionstate)state forregion:(clregion *)region { uilocalnotification *notification = [[uilocalnotification alloc] init]; switch (state) { c