私は2つのボタンがあるMapViewに取り組んでいます。1)centerButton: このボタンは、現在のマップの中心にピン注釈をドロップします。このボタンを押すと、最後の注釈が NSMutable 配列に保存されます。次に、マップビューから最後の注釈を削除し、マップの中心にピンを 1 つドロップします。この部分に対して実行したコードは次のとおりです。ピンをドロップする関数
- (void)PinDropwithlatitude:(double)lat longitude:(double)longi droptitle:(NSString *)title
{
CLLocationCoordinate2D theCoordinate;
theCoordinate.latitude = lat;
theCoordinate.longitude = longi;
MKCoordinateRegion region;
region.center.latitude = theCoordinate.latitude;
region.center.longitude = theCoordinate.longitude;
//Set Zoom level using Span
MKCoordinateSpan span;
span.latitudeDelta =0.005;
span.longitudeDelta =0.005;
region.span = span;
[MapView setRegion:region animated:YES];
SetLat =lat;
SetLong =longi;
DDAnnotation *annotation = [[[DDAnnotation alloc] initWithCoordinate:theCoordinate addressDictionary:nil] autorelease];
annotation.title = title;
annotation.subtitle = [NSString stringWithFormat:@"%f %f", annotation.coordinate.latitude, annotation.coordinate.longitude];
[MapView addAnnotation:annotation];
}
中央のボタンを押すと、次のコードを実行し、最後の配列を注釈に保存します。
-(IBAction)CenterPressed:(id)sender
{
//40.439631,-3.698273 -spain centre
[lastAnnotation addObjectsFromArray:MapView.annotations];
NSLog(@"last annotation array=%@",lastAnnotation);
for (id annotation in [MapView annotations])
{
if ([annotation isKindOfClass:[MKUserLocation class]])
{
continue;
}
[MapView removeAnnotation:annotation];
}
[self PinDropwithlatitude:SetLat longitude:SetLong
droptitle:NSLocalizedString(@"Title", nil)];
}
配列のログには、以下に表示される最後の注釈が表示されています::
last annotation array=(
"<+40.43963100,-3.69827300> +/- 0.00m",
"<+40.43923187,-3.68722200> +/- 0.00m",
"<+40.43792343,-3.67670774> +/- 0.00m",
"<+40.43772888,-3.66711617> +/- 0.00m"
)
2)UNDOButton: 現在配置されている注釈を削除し、前の注釈を再ドロップします。そのため、マップビューから注釈を削除し、コードを使用して、以前に維持した配列から注釈の最後の注釈を再ドロップします。
-(IBAction)undoPressed:(id)sender
{
if ([lastAnnotation count]>0)
{
int countAnn = [lastAnnotation count];
[MapView removeAnnotation:[lastAnnotation objectAtIndex:countAnn-1]];
//[MapView delete:[lastAnnotation objectAtIndex:countAnn-1]];
[lastAnnotation removeObjectAtIndex:countAnn-1];
double latitude = [[[lastAnnotation objectAtIndex:[lastAnnotation count]-1] annotation]coordinate].latitude;
double longitude = [[[lastAnnotation objectAtIndex:[lastAnnotation count]-1]annotation]coordinate].longitude;
NSLog(@"count = %d",[lastAnnotation count]);
[self PinDropwithlatitude:latitude longitude:longitude droptitle:NSLocalizedString(@"Title", nil)];
}
}
しかし、元に戻すボタンを押すと、次のエラーでクラッシュします
-[DDAnnotation 注釈]: 認識されないセレクターがインスタンス 0x79b8f40 に送信されました
どこで問題が発生するのか、正確にはわかりません。上記のコードで私の間違いを指摘するのを手伝ってください。
ありがとう