NSString *url = [NSString stringWithFormat: @"http://maps.google.com/maps?saddr=%f,%f&daddr=%f,%f", currentLocation.latitude, currentLocation.longitude, coordinate.latitude, coordinate.longitude];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
我正在尝试从我的应用程序中打开 iPhone 上的地图应用程序以显示两个位置之间的方向。但是,它在 safari 中显示来自谷歌的书面指示,而不是打开地图应用程序。谁能帮帮我。