Keller
Keller

Reputation: 17081

CoreLocation current accuracy/range

I am using CLLocationManager to continuously scan location updates. I am setting desiredAccuracy which I understand is a best case- the question is, is there a way to know what the current accuracy is?

Upvotes: 0

Views: 186

Answers (1)

Alfonso
Alfonso

Reputation: 8492

When you get a location from the CLLocationManager you can read the effective accuracy using horizontalAccuracy and verticalAccuracy on CLLocation.

Upvotes: 1

Related Questions