根据用户的位置移动图钉
Posted
技术标签:
【中文标题】根据用户的位置移动图钉【英文标题】:Move a pin according to the position of the user 【发布时间】:2011-10-03 12:11:23 【问题描述】:在我的 iPhone 应用程序中,我想使用 mapView 在当前位置放置一个图钉,并且我还需要在我的位置发生变化时移动另一个图钉或球。我该怎么做?
【问题讨论】:
【参考方案1】:要显示用户位置,只需添加:
mapView.showsUserLocation = YES;
要获取它,请使用userLocation
方法,它会为您提供MKUserLocation
。
然后您可以使用addAnnotation
方法添加id<MKAnnotation>
对象以显示另一个图钉。
【讨论】:
以上是关于根据用户的位置移动图钉的主要内容,如果未能解决你的问题,请参考以下文章