試圖找出在按下按鈕以轉到mapView中的某個經度和緯度時是否可以放下按鈕。我複製了以前工作的「newAnnotation」引腳的代碼,但現在意識到它可能不在我的按鈕代碼中。這裏是我的按鈕代碼:在按下按鈕時在地圖上顯示註釋Pin
-(IBAction)buttonPressed
{
CLLocationCoordinate2D location;
MKCoordinateSpan span;
location.latitude = (double) 44.4758;
location.longitude = (double) -73.2125;
span.latitudeDelta=0.2;
span.longitudeDelta=0.2;
MapViewAnnotation *newAnnotation = [[MapViewAnnotation alloc] initWithTitle:@"BCA"
andCoordinate:location];
[self.mapView addAnnotation:newAnnotation];
[newAnnotation release];
themapView = [[MapView alloc] initWithNibName:@"MapView" bundle:nil];
[self.view addSubview:themapView.view];
}
我知道按鈕的作品和它實際上去的MapView和正在處理的座標,但它只是不會放棄與標題的引腳。目前,我的代碼不存在任何錯誤。如果您需要查看其他代碼,請告訴我。太感謝了。
我知道按鈕WORKS,它實際上是去mapView和正在處理的座標,但它只是沒有放下與標題的引腳。目前,我的代碼不存在任何錯誤。如果您需要查看其他代碼,請告訴我。太感謝了。 – Greg