user4951
user4951

Reputation: 33080

CLLocation can't be turned off

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

Answers (1)

Shmidt
Shmidt

Reputation: 16664

Yes, MKMapView uses CLLocationManager to get user location. You can turn it off by setting property showsUserLocation to NO.

Upvotes: 1

Related Questions