I want to search the current location in my app, but I see entire location service is not allowed.
@interface LoginViewController : UIViewController <CLLocationManagerDelegate>
{
CLLocationManager* locationManager;
CLLocation* currentLocation;
} //header file
//implementation header file
(void)loginButtonPressed:(id)aSender
{
if (locationManager == nil)
{
locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
locationManager.distanceFilter = kCLDistanceFilterNone;
}
[locationManager startUpdatingLocation];
}
//implementation CLLocationManagerDelegate
(void)locationManager:(CLLocationManager *)manager
didUpdateToLocation:(CLLocation *)newLocation
fromLocation:(CLLocation *)oldLocation
{
NSLog(@"update location");
if(self.currentLocation == nil)
{
self.currentLocation = newLocation;
[locationManager stopUpdatingLocation];
}
}
(void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error
{
NSLog(@"fail with error");
[locationManager stopUpdatingLocation];
self.currentLocation = nil;
}
When locationManager calls startUpdatingLocation (supposing location service is not allowed), locationManager cannot get current location and calls the didFailWithError: method.
In my case, locationManager calls nothing with iOS5 but calls didFailWithError: method with iOS4. I don't know what is my fault.