I am facing an issue in my iPad/iPhone app. Issue is related to CLLocationManager.
In my app I am getting current latitude and Longitude. This is working fine in my iPhone application but I am facing issue in my iPad application.
Following method is not called by CLLocationManager:
-(void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
Following is the code.
//I CALL THIS METHOD manually in will appear method
-(void)chkForCtynRds
{
m_locationManager = [[CLLocationManager alloc] init];
m_locationManager.delegate = self;
[m_locationManager startUpdatingLocation];
}
-(void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
MKPointAnnotation *annotationPoint = [[MKPointAnnotation alloc] init];
annotationPoint.coordinate = newLocation.coordinate;
m_dblLatitude = newLocation.coordinate.latitude;
m_dblLongitude = newLocation.coordinate.longitude;
[m_locationManager stopUpdatingLocation];
m_locationManager.delegate=nil;
[self webServiceForSearchEvent];//THIS IS METHOD TO CALL WEBSERVICE
}
How I can resolve this?
