Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.