我想创建一个需要userLocation的应用程序,但是MkMapView.userLocation只是readonly,无法更改。我怎么用呢?我可以设置userLocation吗? myMap.userLocation = MyCurrentLocation;
我需要哪些代码才能让它变得简单?
答案 0 :(得分:2)
您需要 CLLocationManager 才能更新用户的当前位置。 CLLocationManagerDelegate 的 locationManager:didUpdateToLocation:fromLocation:方法将更新当前用户位置。
您可以按照this tutorial学习实施它。