gpt4 book ai didi

ios - 我们如何在应用程序界面中打开 iOS 6 的 map 应用程序

转载 作者:行者123 更新时间:2023-11-29 03:50:47 24 4
gpt4 key购买 nike

我正在使用以下代码进行 iOS 6 的 map 转弯导航,

Class mapItemClass = [MKMapItem class];
if (mapItemClass && [mapItemClass respondsToSelector:@selector(openMapsWithItems:launchOptions:)])
{
// Create an MKMapItem to pass to the Maps app
CLLocationCoordinate2D coordinate =
CLLocationCoordinate2DMake(16.775, -3.009);
MKPlacemark *placemark = [[MKPlacemark alloc] initWithCoordinate:coordinate
addressDictionary:nil];
MKMapItem *mapItem = [[MKMapItem alloc] initWithPlacemark:placemark];
[mapItem setName:@"My Place"];
// Pass the map item to the Maps app
[mapItem openInMapsWithLaunchOptions:nil];


}

它将我重定向到 map 应用程序,所以我需要什么,我需要在我的应用程序界面中打开它,以便用户可以保留在应用程序中而不退出应用程序界面。

请提出一些控制这个问题的想法。

最佳答案

MKMapKit不支持 MKMapView 中的导航,您需要将用户发送到map.app。

如果您确实想在应用程序中使用转弯导航,那么您唯一的选择就是自己构建导航。

关于ios - 我们如何在应用程序界面中打开 iOS 6 的 map 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17108533/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com