I am trying to fetch user location in my iOS app. I have included corelocation framework in my project first. Then on a button click I am invoking the core location api as below. When I am trying to install this in a device, the core location never asks the user permission. When I try to fetch the location on button click, I am getting kCLAuthorizationStatusNotDetermined as the authorisationStatus. Please help me in this. I have no clue what is happening.
- (IBAction)fetchLessAccurateLocation:(id)sender {
[self.txtLocation setText:@""];
locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyKilometer;
locationManager.distanceFilter = 1000;
if ([self shouldFetchUserLocation]) {
[locationManager startUpdatingLocation];
}
}
This is my shouldFetchUserLocation method:
-(BOOL)shouldFetchUserLocation{
BOOL shouldFetchLocation= NO;
if ([CLLocationManager locationServicesEnabled]) {
switch ([CLLocationManager authorizationStatus]) {
case kCLAuthorizationStatusAuthorized:
shouldFetchLocation= YES;
break;
case kCLAuthorizationStatusDenied:
{
UIAlertView *alert= [[UIAlertView alloc]initWithTitle:@"Error" message:@"App level settings has been denied" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles: nil];
[alert show];
alert= nil;
}
break;
case kCLAuthorizationStatusNotDetermined:
{
UIAlertView *alert= [[UIAlertView alloc]initWithTitle:@"Error" message:@"The user is yet to provide the permission" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles: nil];
[alert show];
alert= nil;
}
break;
case kCLAuthorizationStatusRestricted:
{
UIAlertView *alert= [[UIAlertView alloc]initWithTitle:@"Error" message:@"The app is recstricted from using location services." delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles: nil];
[alert show];
alert= nil;
}
break;
default:
break;
}
}
else{
UIAlertView *alert= [[UIAlertView alloc]initWithTitle:@"Error" message:@"The location services seems to be disabled from the settings." delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles: nil];
[alert show];
alert= nil;
}
return shouldFetchLocation;
}
Here is my core location delegate method:
- (void)locationManager:(CLLocationManager *)manager
didUpdateLocations:(NSArray *)locations __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_6_0){
NSLog(@"location fetched in delegate");
CLLocation* location = [locations lastObject];
NSDate* eventDate = location.timestamp;
NSTimeInterval howRecent = [eventDate timeIntervalSinceNow];
if (abs(howRecent) < 15.0) {
// If the event is recent, do something with it.
NSLog(@"inside loop.... latitude %+.6f, longitude %+.6f\n",
location.coordinate.latitude,
location.coordinate.longitude);
}
NSLog(@"latitude %+.6f, longitude %+.6f\n",
location.coordinate.latitude,
location.coordinate.longitude);
[self.txtLocation setText:[NSString stringWithFormat:@"\nlatitude: %+.6f \nlongitude: %+.6f", location.coordinate.latitude, location.coordinate.longitude]];
[locationManager stopUpdatingLocation];
[locationManager stopMonitoringSignificantLocationChanges];
if(locationManager!=nil){
locationManager.delegate= nil;
locationManager= nil;
}
}
Uninstall the app and try running it again.
If it didn't work, go to the settings and disable the authorization to that app. After that running it again to see if it asks permissions.
Or:
You can force the app start monitoring the location with some code like that:
in your delegate methods you can detect if there an error getting location and you can inform the user.
If you have any questions tell me.
iOS8 has got us major API changes with the LocationsServices
Assuming
[CLLocationManager locationServicesEnabled]
return YES,With the First Launch of the iOS App [both iOS7 and iOS8] - locationMangers(CLLocationManager) authorizationStatus preset to
Prompting in iOS7+
Initiate the locationManger (CLLocationManager , Strong) and set the delegates(CLLocationManagerDelegate)
Now to prompt the user to use Locations Services and List the App under the Settings> Privacy> Locations Services its MUST to call any of the Locations Services Methods, its depends on the App requirement- for example if app is kind of one of the below
Locations Updates -
[self.locationManager startUpdatingLocation]
RegionMonitoring -
[self.locationManager startMonitoringForRegion:beaconRegion]
right after executions of the above method iOS will prompt user requesting to accept use of Locations Services in app and irrespective of user choice app will be listed under the Settings > Privacy > Locations Services.
Prompting in iOS8+
Its in same case with iOS8, with the first launch the App Locations Services
iOS 8 we got new methods for showing prompt to user
requestAlwaysAuthorization/requestWhenInUseAuthorization availbable from iOS8. if App deployment target is iOS7 then wrap this under if block to make sure in iOS7 this doesn't lead to app crash.
or
Very Important ###:
As per iOS8 its mandatory to include the string stating why app uses requestAlwaysAuthorization/requestWhenInUseAuthorization In info.plist include any of these property respective to the requirement of the app
for kCLAuthorizationStatusAuthorizedAlways include Key/Value(string Value) pair
for kCLAuthorizationStatusAuthorizedWhenInUse include Key/Value(string Value) pair
Screenshot of info.plist (in case anybody is confused by this)
Try adding
[locationManager startUpdatingLocation]
also make sure that location services is turned on.
EDIT:
Also try deleting the application and re-installing it. There may be a record of that the app is reading which is preventing it from asking for permission to use location.
I have had the issue that Rashmi Ranjan mallick said in the comments few times since iOS 7 was release. I really think is one bug from iOS 7, they have a tons of them in the new version of iOS.
For me the issue was the same:
1.Open the app, never asked about location. iOS was not asking about permissons
2.I went to Settings->Privacy->Location services and my app was not there.
3.I was not able to change the location permissions for my app in any way.
One workaround for that is:
1.Kill your app.
2.Disable all location services with the main switch button.
3.Go to your app again.
4.Kill your app.
5.Enable the Location services again on the previous switch button.
6.If still doesn't appear on the list go again to your app, kill it again, and go back to the settings.
7.Now it should be there.
This worked for me and I hope this is useful.
UPDATE: if iOS 8 be sure you are calling
requestWhenInUseAuthorization
orrequestAlwaysAuthorization
You may follow this code: :)
I was facing the same issue, after re-installing my app it was returning
kCLAuthorizationStatusNotDetermined
whenever checking for[CLLocationManager authorizationStatus]
and the app didn't even show up in Settings > Privacy > Location Services.The authorization dialog that iOS prompts user to approve access to location services is triggered on
[locationManager startUpdatingLocation]
which in your case is never called (shouldFetchUserLocation
will be alwaysNO
).Miguel C.'s solution seems like a good fix, will try that.
Edit for iOS8.x
When iOS8 came it brought little change in the way CLLocationManager is used. As mentioned few times in other answers it requires additional step comparing to iOS7. Today I faced the issue myself and found this article (it's been referenced from multiple other questions but it completes my earlier answer). Hope it helps!
Objective-C Follow the below intructions:
iOS-11 For iOS 11 have a look into this Answer: iOS 11 location access
Need to Add two Keys into plist and provide message as below image:
iOS-10 and below:
Delegat Methods
Swift Code
Follow the below instructions:
iOS-11 For iOS 11 have a look into this Answer: iOS 11 location access
Need to Add two Keys into plist and provide message as below image:
iOS-10 and below:
Delegate Methods