2012-08-02 70 views
0

我有一個基於地圖的iphone應用程序,當前顯示用戶位置和通過json拉出的註釋。我正在嘗試創建一個按鈕,以便放大並集中用戶的當前位置。我已經發現了下面的代碼:Xcode Mapkit放大到當前位置

  • (IBAction爲)showCurrentLocation { [MapView的setCenter:mapView.userLocation.coordinate動畫:YES]; }

並明白,這可以幫助無論我在哪裏粘貼此代碼,我會得到錯誤。有沒有人知道做這個工作的步驟/如果這是正確的方法?

謝謝!

回答

1

這可能會幫助您:

- (IBAction)showCurrentLocation:(id)sender { 
self.mapview.showsUserLocation=YES; 
self.mapview.delegate = self; 
[self.mapview setUserTrackingMode:MKUserTrackingModeFollow animated:YES]; 
}