Reputation: 2366
Any one know what's the maximum number of shared regions is? Do you get regionMonitoringDidFail call if you exceed it?
Upvotes: 2
Views: 760
Reputation: 651
I have the same experience. Here are a few tips:
@selector(locationManager:monitoringDidFailForRegion:withError:)
in delegate at each time.maximumRegionMonitoringDistance
. Upvotes: 1
Reputation: 658
I can't get it to accept more than 10 regions. No error message just monitoredRegions does not get any members after 10.
edit: if I add a lot (around 60) of regions sometimes it crashes. No error message. This produces a bad access
[locationManager startMonitoringForRegion:clr desiredAccuracy:500.0];
edit: at 5 regions I am getting pretty reliable results
Upvotes: 2