在地址字段中单击显示mapview

时间:2012-04-20 05:44:44

标签: iphone ios mkmapview abpersonviewcontroller

我有一个子类ABPersonViewController的类。单击PersonViewController中的地址字段时,我需要在mapview中显示相应的地址位置,就像在本机地址簿中一样。我该如何实现此功能。这不应该是ABPersonViewController中的默认功能。

2 个答案:

答案 0 :(得分:0)

UIApplication *app = [UIApplication sharedApplication];  
[app openURL:[NSURL URLWithString:@"http://maps.google.com/maps?q=Paris"]];

尝试此代码,代替巴黎,使用自己的位置名称。

答案 1 :(得分:-1)

查看以下链接,您必须从地址簿中发送地址

查看这两个链接,其中一个提供堆栈溢出回答How to invoke iPhone Maps for Directions with Current Location as Start Address  这是来自tutplus mobtutplus

的教程