我想制作一个需要userLocation的应用程序,但是MkMapView.userLocation只是只读的,不能更改。我该如何使用?我可以像这样设置userLocation吗
myMap.userLocation = MyCurrentLocation;
我需要简化任何代码吗?
最佳答案
您需要CLLocationManager来更新用户的当前位置。 CLLocationManagerDelegate的locationManager:didUpdateToLocation:fromLocation:方法将更新您当前的用户位置。
您可以按照this tutorial学习实现它。
关于iphone - 如何在iPhone上移动MkMapView.userLocation?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6704646/