views:

21

answers:

1

Hi everybody,

How accurate is the CCLocation class? 20 meters? more or less? Because I'd like to get the most accurate values from the user's location.

Thanks,

Regards

+1  A: 

You can request the accuracy desired using the desiredAccuracy property of CLLocationManager. But the actual accuracy delivered depends on other factors generally outside your control including whether the device is using GPS, cell tower, or wifi.

aBitObvious