Мне нужно получить доступ к расположению пользователей в этом методе, содержащемся в mainViewController
-(void)loadAnnotations{
[mapView removeAnnotations:mapView.annotations];
CLLocationCoordinate2D workingCoordinate;
workingCoordinate.latitude= //here i need the users latitude
workingCoordinate.longitude= //here i need the users longitude
NSLog(@" this is %@", workingCoordinate.latitude);
iProspectLiteAnnotation *tempMine = [[iProspectLiteAnnotation alloc] initWithCoordinate:workingCoordinate];
[tempMine setTitle:@"Present Location"];
[tempMine setAnnotationType:iProspectLiteAnnotationTypeUser];
[mapView addAnnotation:tempMine];
}
однако mainViewController уже установлен на
<fipsideViewControllerDelegate>
Что мне добавить в заголовочный файл и файл реализации, чтобы опросить диспетчер местоположений для пользователей текущей широты и долготы?