如何在iPhone上移动MkMapView.userLocation?

时间:2011-07-15 08:50:43

标签: iphone objective-c ios cocoa-touch mkmapview

我想创建一个需要userLocation的应用程序,但是MkMapView.userLocation只是readonly,无法更改。我怎么用呢?我可以设置userLocation吗? myMap.userLocation = MyCurrentLocation;

我需要哪些代码才能让它变得简单?

1 个答案:

答案 0 :(得分:2)

您需要 CLLocationManager 才能更新用户的当前位置。 CLLocationManagerDelegate locationManager:didUpdateToLocation:fromLocation:方法将更新当前用户位置。

您可以按照this tutorial学习实施它。