Location Services not working in iOS 11

2019-01-06 13:51发布

I just rebuilt my app with the iOS 11 SDK in an attempt to remove the blue banner that is now always appearing. I thought - "Brilliant, that worked", only to discover that location services are now not working at all.

The application used to work with iOS 10 - Has anybody heard anything?

7条回答
Juvenile、少年°
2楼-- · 2019-01-06 14:12

It would appear that apple have added yet another privacy feature. The user is now able to override our requestAlwaysAuthorization and downgrade it to requestWhenInUseAuthorization - Which means as a developer we now have to supply both descriptions in the Info.plist

I found that they have added a new key NSLocationAlwaysAndWhenInUseUsageDescription

/*
*      Either the NSLocationAlwaysAndWhenInUseUsageDescription key or both the
*      NSLocationAlwaysUsageDescription and NSLocationWhenInUseUsageDescription
*      keys must be specified in your Info.plist; otherwise, this method will do
*      nothing, as your app will be assumed not to support Always authorization.
*/

However, upon using this new key - the location service still didn't work, upon further searching I found this gem mixed in with all the extra debugging information:

This app has attempted to access privacy-sensitive data without a usage description. The app's Info.plist must contain both NSLocationAlwaysAndWhenInUseUsageDescription and NSLocationWhenInUseUsageDescription keys with string values explaining to the user how the app uses this data

Which directly contradicts the the comment that I found in the updated CLLocationManager.h file. So I've created a radar.

Good news, if you follow the advice of the debugging console, IE. add both the new key NSLocationAlwaysAndWhenInUseUsageDescription and one of the old keys NSLocationWhenInUseUsageDescription, locations services will start to work again.

查看更多
3楼-- · 2019-01-06 14:13

Working in Swift 4.0.3

   <key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
   <string>Description</string>

   <key>NSLocationAlwaysUsageDescription</key>
   <string>Will you allow this app to always know your location?</string>

   <key>NSLocationWhenInUseUsageDescription</key>
   <string>Do you allow this app to know your current location?</string>  
查看更多
三岁会撩人
4楼-- · 2019-01-06 14:13

Swift : 3 i have faced the same issue. i was totally screwed up finding the solution. here is how i fixed the issue.

step-1 : Project file > Capabilities > background modes > select Location Update

step-2 : Add NSLocationWhenInUseUsageDescription , NSLocationAlwaysAndWhenInUseUsageDescription keys to Info.plist

step-3 :

manager.pausesLocationUpdatesAutomatically = false
manager.allowsBackgroundLocationUpdates = true
查看更多
淡お忘
5楼-- · 2019-01-06 14:15

Just to add the steps on fixing this:

2 ways to do it:

A) The easy way: Select your Info.plist file, add the properties, note that they start with PRIVCY instead of LOCATION... therefore, the exact names of these variables starts with "Privacy - Location ... " etc, add each here, and describe how the user would be seeing this on the warning.

B) The hard / interesting / programatic way (I like this way more):

Right click on your Info.plist for your app, and then select "View source code", you should see it all in XML,

Follow the other ...... format, and add these properties as follows:

<key>NSLocationAlwaysUsageDescription</key>
<string>Program requires GPS to track cars and job orders</string>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>Program requires GPS to track cars and job orders</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Program requires GPS to track cars and job orders</string>
<key>NSMicrophoneUsageDescription</key>
<string>This app uses your Microphone to allow Voice over IP communication with the Program Admin system</string>

Save, and then right-click on the info.plist file, and then select Property list, this should view the file back into the default view.

EDIT:

Another member asked for code, here it is:

1) On your .H file, add:

@property (strong, nonatomic) CLLocationManager *LocationManager;

2) On your .M file add under ViewDidAppear() function:

_LocationManager = [[CLLocationManager alloc] init];
[_LocationManager setDelegate:self];
_LocationManager.desiredAccuracy = kCLLocationAccuracyBestForNavigation;
_LocationManager.pausesLocationUpdatesAutomatically = NO;
[_LocationManager requestAlwaysAuthorization];

_LocationManager.headingFilter = 5;
_LocationManager.distanceFilter = 0;

[_LocationManager startUpdatingLocation];
[_LocationManager startUpdatingHeading];

This what works fine for me, hopefully the code would work for you too.

Regards

Heider

查看更多
The star\"
6楼-- · 2019-01-06 14:18

working under iOS11 i discovered, that Info.plist needs al least NSLocationAlwaysAndWhenInUseUsageDescription in Info.plist:

enter image description here

Strange enough when your app is multilingual the localized versions of your strings need all three keys mentioned in this post else requestAlwaysAuthorization() and locationManager(_ manager: CLLocationManager, didChangeAuthorization status: CLAuthorizationStatus) will fail silently.

Shot showing german translation as example:

enter image description here

Hope this saves you time when stumbling upon.

查看更多
倾城 Initia
7楼-- · 2019-01-06 14:29

Better safe than sorry .. In iOS 11 : Add the below and you are good.

<key>NSLocationWhenInUseUsageDescription</key>
<string>Description</string>

<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>Description</string>

<key>NSLocationAlwaysUsageDescription</key>
<string>Description</string>
查看更多
登录 后发表回答