Reputation: 17081
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
Reputation: 8492
When you get a location from the CLLocationManager
you can read the effective accuracy using horizontalAccuracy
and verticalAccuracy
on CLLocation
.
Upvotes: 1