gpt4 book ai didi

ios - 在 ios 中创建自定义标注

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:08:40 28 4
gpt4 key购买 nike

我想在我的 map 上创建自定义标注。我现在已经试过了 -

    -(void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view{
NSLog(@"ANNNOTATION VIEW : %@", view);
NSLog(@"VIEW ANNOTATION: %@", view.annotation);
MyMapAnnotationViewController* mapAnnotationViewController = [[MyMapAnnotationViewController alloc]initWithNibName:@"MapAnnotationView" bundle:nil];
MyLocation* location = (MyLocation*)view.annotation;
[mapAnnotationViewController setTitle: [location title]];
[mapAnnotationViewController setRating:3.0];
[view addSubview:mapAnnotationViewController.view];
}

-(void)viewWillAppear:(BOOL)animated{
[_mapView setRegion: _viewRegion];
for (id<MKAnnotation> annotation in _mapView.annotations) {
[_mapView removeAnnotation:annotation];
}
for(NSDictionary* result in _resultsToPlot){
NSString* address = someAddr;
NSString* restaurantTitle = someTitle;
NSString* description = someDescription;
NSString* lonLat = someLonLat;
NSArray *list = [lonLat componentsSeparatedByString:@";"];
CLLocationCoordinate2D coordinate;
coordinate.longitude = [[list objectAtIndex: 1] doubleValue];
coordinate.latitude = [[list objectAtIndex: 0] doubleValue];
MyLocation *annotation = [[MyLocation alloc] initWithName:restaurantTitle address:address coordinate:coordinate] ;

[_mapView addAnnotation:annotation];
}

MyLocation 是 MKAnnotation 的子类。

但是,当我点击时,这就是现在的样子 -

enter image description here

因此,当我单击一个图钉时,我的自定义 View 会显示并且注释会显示。我只想显示自定义 View 。此外,当我点击另一个图钉时,之前的自定义 View 仍然存在。

我如何获得它以便注释成为我的自定义 View ?

好的 - 所以我做了下面的并添加了这个 -

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(MKAnnotationView*)annotation{
annotation.canShowCallout = NO;
return annotation;
}

我现在收到这个错误-

NSInvalidArgumentException', reason: '-[MyLocation setCanShowCallout:]: unrecognized selector sent to instance 0xcb683e0'

最佳答案

要禁止显示内置标注,请在 MKPinAnnotationView/MKAnnotationView 上将 canShowCallout 设置为 NOviewForAnnotation 委托(delegate)方法中。

下一个问题是,当前代码总是创建一个 自定义标注 View 并将其添加到所选注释的 View 中。这就是为什么您会同时显示多个标注(之前选择的注释上的标注不会被删除)。

一种解决方案是保留自定义标注 View 的单个实例,而不是每次选择注释时都创建一个新实例。然后,只需在选择或取消选择注释时添加/删除标注 View 。

在包含 map View 的 View Controller 中将此单个实例声明为强属性:

@property (nonatomic, strong) MyMapAnnotationViewController* mapAnnotationViewController;

viewDidLoad(或 viewWillAppear 如果适合你的话)中创建 callout 实例,但此时不要将它作为 subview 添加到任何地方 - 只需创建它:

self.mapAnnotationViewController = [[MyMapAnnotationViewController alloc...

didSelectAnnotationView 中,不是创建新的 callout View 实例,而是告诉现有实例将其自身从其当前超 View (如果有)中删除,然后将其添加到新注释的 View 中:

-(void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view {
NSLog(@"ANNNOTATION VIEW : %@", view);
NSLog(@"VIEW ANNOTATION: %@", view.annotation);

[self.mapAnnotationViewController.view removeFromSuperview];

MyLocation* location = (MyLocation*)view.annotation;
[self.mapAnnotationViewController setTitle: [location title]];
[self.mapAnnotationViewController setRating:3.0];
//Since we are re-using the callout view,
//may need to do additional "cleanup" so that the callout
//shows the new annotation's data.

[view addSubview:self.mapAnnotationViewController.view];
}

最后,您需要处理用户通过点击 map (而不是另一个注释)取消选择注释并仅删除标注 View 的情况:

-(void)mapView:(MKMapView *)mapView didDeselectAnnotationView:(MKAnnotationView *)view
{
[self.mapAnnotationViewController.view removeFromSuperview];
}


viewForAnnotation 委托(delegate)方法应如下所示:

-(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation
{
if (! [annotation isKindOfClass:[MyLocation class]])
{
//tell map view to show default view for annotations other than ours
//(like the user location blue dot)
return nil;
}

MKPinAnnotationView *pav = (MKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:@"pin"];
if (pav == nil)
{
pav = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"pin"];
pav.canShowCallout = NO;
}
else
{
pav.annotation = annotation;
}

return pav;
}

关于ios - 在 ios 中创建自定义标注,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20886625/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com