Как узнать широту и долготу пользователей? - PullRequest
0 голосов
/ 18 июня 2010

Мне нужно получить доступ к расположению пользователей в этом методе, содержащемся в 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>

Что мне добавить в заголовочный файл и файл реализации, чтобы опросить диспетчер местоположений для пользователей текущей широты и долготы?

1 Ответ

5 голосов
/ 18 июня 2010

В вашем другом вопросе я уже говорил вам, как получить местоположение, поэтому:

-[CLLocation coordinate]

Никогда не помешает заглянуть в документацию, прежде чем отправлять вопросы ...

...