gpt4 book ai didi

ios - 从给定位置拖动图钉

转载 作者:行者123 更新时间:2023-11-29 10:51:42 24 4
gpt4 key购买 nike

我在 map 上使用 MKMapView。在一个 View Controller 中,我需要很长时间才能在 map 中放置图钉。现在从预览按钮用户可以看到带有 pin 的位置。现在我有了一个按钮,用户可以通过单击该按钮将图钉拖到他们想要的位置。应用程序可以得到那么长的时间。如何实现这个

最佳答案

使用这段代码也采用MKMapViewDelegate

- (void)mapView:(MKMapView *)mapView 
annotationView:(MKAnnotationView *)annotationView
didChangeDragState:(MKAnnotationViewDragState)newState
fromOldState:(MKAnnotationViewDragState)oldState
{
if (newState == MKAnnotationViewDragStateEnding)
{
CLLocationCoordinate2D droppedAt = annotationView.annotation.coordinate;
NSLog(@"Pin dropped at %f,%f", droppedAt.latitude, droppedAt.longitude);
}
}

关于ios - 从给定位置拖动图钉,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20144684/

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