本文介绍了如何在触摸时将推针添加到MKMapView(IOS)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我必须获得用户触摸MKMapView的点的协调。
我没有使用Interface Builder。
你能给我一个例子或链接。

I had to get the coordonate of a point where the user touch on a MKMapView.I'm not working with the Interface Builder.Can you give me one example or a link.

非常感谢

推荐答案

您可以使用协议。如果您的应用只能在iOS 4.0或更高版本上运行,则可以使用预定义的。

YourMKAnnotationClass is a class you define that conforms to the MKAnnotation protocol. If your app will only be running on iOS 4.0 or later, you can use the pre-defined MKPointAnnotation class instead.

有关创建自己的MKAnnotation类的示例,请参阅示例应用和。

For examples on creating your own MKAnnotation class, see the sample apps WeatherMap and MapCallouts.

这篇关于如何在触摸时将推针添加到MKMapView(IOS)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-19 03:43