Monday 1 August 2016

objective c - Location Services not working in iOS 8



My app that worked fine on iOS 7 doesn't work with the iOS 8 SDK.



CLLocationManager doesn't return a location, and I don't see my app under Settings -> Location Services either. I did a Google search on the issue, but nothing came up. What could be wrong?



Answer



I ended up solving my own problem.



Apparently in iOS 8 SDK, requestAlwaysAuthorization (for background location) or requestWhenInUseAuthorization (location only when foreground) call on CLLocationManager is needed before starting location updates.



There also needs to be NSLocationAlwaysUsageDescription or NSLocationWhenInUseUsageDescription key in Info.plist with a message to be displayed in the prompt. Adding these solved my problem.



enter image description here



Hope it helps someone else.




EDIT: For more extensive information, have a look at: Core-Location-Manager-Changes-in-ios-8


No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...