Как добавить кнопку «Направления сюда» в адресную книгу? - PullRequest
0 голосов
/ 20 июня 2011

В приложении Google Map есть «направления сюда» и «направления отсюда», например http://static.intomobile.com/wp-content/uploads/2008/10/iphone-22-os-google-maps-street-view-23.png

Когда я вызываю страницу контактов, могу ли я добавить кнопку "Как добраться сюда" на информационную страницу адресной книги?

ABAddressBookRef addressBook = ABAddressBookCreate();
NSArray *allPeople = (NSArray *)ABAddressBookCopyArrayOfAllPeople(addressBook);
ABRecordRef person = ABAddressBookGetPersonWithRecordID(addressBook, (ABRecordID) iRecordNo);

ABPersonViewController *personController = [[ABPersonViewController alloc] init];

personController.addressBook = addressBook;
personController.displayedPerson = person;
personController.allowsEditing = YES;       

[self.navigationController pushViewController:personController animated:YES];

[personController release]; 

1 Ответ

0 голосов
/ 28 июня 2011
"http://maps.google.com/maps?daddr=%f,%f&saddr=%f,%f",userLatitude,userLongitude,targetLatitude,targetLongitude


-(void)goToMaps{

[[UIApplication sharedApplication]openURL:url];//the url i gave you above
NSLog(@"the URL for directions is %@", [url absoluteString]);

}
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath {

if (indexPath.row == x) {//whatever row in the table it is on
    [self goToMaps];
}

}

...