the max of regions can be monitored in xcode is 20 region how can i monitor more then this number by monitor only closest regions ?
for (int i = 0; i < [AllRegionsArray count]; i++) {
NSArray *LongLati = [AllRegionsArray objectAtIndex:i];
lutiuid = [LongLati objectAtIndex:0];
Longtuid = [LongLati objectAtIndex:1];
CLLocationCoordinate2D centreLoc = {[lutiuid floatValue], [Longtuid floatValue]};
CLLocationDistance regionRadius = 100.00;
CLRegion *grRegion = [[CLRegion alloc] initCircularRegionWithCenter:centreLoc radius:regionRadius identifier:[NSString stringWithFormat:@"grRegion%i",i]];
[locationManager startMonitoringForRegion:grRegion desiredAccuracy:acc];
}
Check the available number of regions by:
In the Location Awareness Programming Guide,
Therefore, the maximum number of regions are limited & not fixed. It is shared system-wide. Referring to your question, you should re-define your regions.
Remember to implement
in case of any failure when adding region to be monitored.