You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apple changed the default for allowsBackgroundLocationUpdates from version 9 forward.
Need to do the equivalent of this when getting authentication for location.
Apple changed the default for allowsBackgroundLocationUpdates from version 9 forward.
Need to do the equivalent of this when getting authentication for location.
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 9) {
locationManager.allowsBackgroundLocationUpdates = YES;
}
The text was updated successfully, but these errors were encountered: