MapKit Pin 掉落
我想制作一个带有地图的 iPhone 应用程序,其中将有几个图钉。有人可以在我的项目中添加一两个图钉,以便我可以看到如何做到这一点。我已经尝试通过一些教程来做到这一点,但我不知道在哪里放置代码..=/
I wanna make an iPhone application with map that will have few pins in it.. Can someone please just add one or two pins in my project so that I can see how to do that.. I've tried to do that with few tutorials, but I don't get it where to put the code.. =/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用
MKPinAnnotationView
。 MapCallouts 演示项目有一些使用示例。查看MapViewController.m
文件,特别是mapView:viewForAnnotation:
方法。You'll want to use an
MKPinAnnotationView
. The MapCallouts demo project has some example uses of it. Look at theMapViewController.m
file, specifically themapView:viewForAnnotation:
method.