我在 iOS 10 之前使用此代码,它运行良好。
//Start monitoring
CLLocationCoordinate2D centre;
centre.latitude = [latZone floatValue];
centre.longitude = [lonZone floatValue];
[self.locationManager startMonitoringForRegion:[[CLCircularRegion alloc] initWithCenter:centre radius:[radiusZone floatValue] identifier:nameZone]];
但是自从iOS 10版本之后,它就不再工作了。它不调用 didEnterRegion: didExitRegion: & didStartMonitoringForRegion:
有任何想法吗?