Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS 6 and Location Services not working

I've updated my iOS SDK to version 6. After that I've compiled my app (works fine in iOS 4 & iOS 5) but now the location services doesn't work. My delegate isn't receiving any update and the upper location arrow is not appearing... I'm starting the service as the usual way:

[locationManager startUpdatingLocation];

My project is non ARC.

What is happening? This is driving me crazy...

Thanks in advance.

like image 516
Samui Avatar asked Sep 20 '12 22:09

Samui


1 Answers

Make sure you have a CFBundleDisplayName in your project's .plist file. Adding that key fixed it for me.

like image 187
offex Avatar answered Sep 27 '22 17:09

offex