I'm testing region monitoring on the Simulator. Both [CLLocationManager regionMonitoringAvailable] and [CLLocationManager regionMonitoringEnabled] return YES. I added App registers for location updates in plist. I have a global location manager in the AppDelegate and startUpdatingLocation works fine both in foreground and backgrund.
Then I have
CLLocationCoordinate2D p = CLLocationCoordinate2DMake(45.488, 9.16);
CLRegion *region=[[CLRegion alloc] initCircularRegionWithCenter:p radius:100.0 identifier:@"emanuele"];
CLLocationAccuracy acc=200.0;
[locationManager startMonitoringForRegion:region desiredAccuracy:acc];
But when testing on the simulator I'm not able to get neither didEnterRegion nor monitoringDidFailForRegion. Am I doing something wrong or missing something?
Thanks a lot in advance.