Location Manager Error : Operation could not be completed(KCLErrorDomain error 0)
why this error occurs?
|
Location Manager Error : Operation could not be completed(KCLErrorDomain error 0) why this error occurs? |
|||
|
|
This error also occurs if you have Scheme/Edit Scheme/Options/Allow Location Simulation checked but don't have a default location set. |
|||||||||
|
|
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... |
|||||||
|
|
From the API docs:
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. |
|||
|
|
|
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 |
|||
|
|
|
Even if you are not connected to wifi, you can set a location in simulator through top menu items It is working for me.
|
|||
|
|
|
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. |
|||
|
|