Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Location Manager Error : Operation could not be completed(KCLErrorDomain error 0)

why this error occurs?

share|improve this question
good question - I've seen the same error sometimes. I believe it happens when the location manager fails to get the current location - e.g. because a good enough fix isn't available. But, I've seen it at times after it has got a good fix, then later on this error pops up. – frankodwyer Sep 14 '09 at 19:31

6 Answers

This error also occurs if you have Scheme/Edit Scheme/Options/Allow Location Simulation checked but don't have a default location set.

share|improve this answer
This was my problem, thank you so much! – flip79 Sep 28 '12 at 17:27
You're welcome. – Pedr Sep 28 '12 at 17:58
Thanks, but my question is if we set default location does it effect the device location update? – Shaf Khan yesterday
@ShafKhan Don't answer questions in the comments. Ask it as a new question. – Pedr yesterday

I just had this problem. Took me a while to find the solution, which is only loosely related to the previous poster's answer.

Airport (WiFi) must be on for CoreLocation in the iPhone/iPad Simulator to work. I was connected via Ethernet so CL didn't do anything in the Simulator. Turn on Airport in your Network Settings and try again. You can change the order of your network interfaces by dragging Airport below Ethernet if you want to continue favoring your wired connection over your wireless...

share|improve this answer
I have this error, and my computer is connected to internet trough WiFi. Also, if I'm not mistaken, the Simulator does not resolve the location, uses always Apple Office location. When using MapKit framework, the blue dot shows, so the location is set. It doesnt make much sense. – Alex Angelico Dec 26 '10 at 22:54
1  
I just turned it on, its not the first in my network list, and everything started working (Lion, XC 4.2) – David H Nov 16 '11 at 19:32

From the API docs:

CLError

Error codes returned by the location manager object.

typedef enum { kCLErrorLocationUnknown = 0, kCLErrorDenied, kCLErrorNetwork, kCLErrorHeadingFailure } CLError;

Constants

kCLErrorLocationUnknown The location manager was unable to obtain a location value right now.Available in iPhone OS 2.0 and later. Declared in CLError.h.

kCLErrorDenied Access to the location service was denied by the user. Available in iPhone OS 2.0 and later. Declared in CLError.h.

kCLErrorNetwork The network was unavailable or a network error occurred. Available in iPhone OS 3.0b and later. Declared in CLError.h.

kCLErrorHeadingFailure The heading could not be determined. Available in iPhone OS 3.0 and later. Declared in CLError.h.

So this means the location could not be determined.

I would guess the most likely cause is that the location manager is using WiFi to triangulate the location, and the database doesn't cover the local networks. That apparently can be fixed by the user if they go here.

However as I noted I have also seen this occasionally as a transient error when running a location based program in a location where the WiFi location stuff normally works.

Lastly I guess it is possible to see this error if there is some kind of hardware failure.

share|improve this answer

1) check that you actually have a valid WiFi and 3G connection

if you do then

2) go to settings and reset your location services 3) reset your network settings

share|improve this answer
Thanks :) I got it working :) – Parth Bhatt Oct 17 '11 at 16:53

Even if you are not connected to wifi, you can set a location in simulator through top menu items Debug>Location

It is working for me.

location error in ios simulator

share|improve this answer

This error is thrown when Location Manager is unable to get location information immediately. I found that this error was occurring when startUpdatingLocation method was called. For me, this was happening on iPod but not on iPhone. That makes sense, since, iPhone has more ways (like cellular network) to get location information and is able get a quick estimate on the location whereas iPod takes more time which caused this error to be raised on iPod.

Since, when this error is thrown locationManager:didFailWithError: delegate method is called, one can handle this specific case in a conditional statement by matching "[error domain]" and "[error code]" from the error object passed to this method.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.