Reputation: 33080
I already do [self.locationManager stopUpdatingLocation];
There is no other active locationManager.
Yet the location manager seems to be active all the time because the arrow sign is in the status bar.
I also use MKMapView
.
I wonder if MKMapView
is the one keep looking for locations?
Upvotes: 1
Views: 42
Reputation: 16664
Yes, MKMapView
uses CLLocationManager
to get user location.
You can turn it off by setting property showsUserLocation
to NO.
Upvotes: 1