How to add “Directions To Here” button into the address book?

时间秒杀一切 提交于 2019-12-01 13:21:54

问题


Google Map App has "directions to here" and "directions from here" like http://static.intomobile.com/wp-content/uploads/2008/10/iphone-22-os-google-maps-street-view-23.png

When I call contact page, can I add "directions to here" button into the info page of address book?

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:


"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];
}

}



来源:https://stackoverflow.com/questions/6414520/how-to-add-directions-to-here-button-into-the-address-book

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!