2

我很难弄清楚我在这里做错了什么......我正在通过循环向我的地图视图添加注释,但注释图像每次都是完全随机NSLog的......当我订购时,它是随机的 - 我'我不确定这是否是问题所在。

- (MKAnnotationView *)mapView:(MKMapView *)mapView1 viewForAnnotation:(id<MKAnnotation>)annotation {

    if ([annotation isKindOfClass:[MKUserLocation class]])
        return nil;

    if ([[annotation subtitle] isEqual:@"Bar"]) {

        MKAnnotationView *view = nil;

        view = [self.mapView dequeueReusableAnnotationViewWithIdentifier:@"myAnnotationIdentifier"];
        if (!view) {
            // Could not reuse a view ...

            // Creating a new annotation view
            view = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"myAnnotationIdentifier"];


            view.enabled = YES;
            view.canShowCallout = YES;
            view.rightCalloutAccessoryView = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
            view.image = [UIImage imageNamed:@"beer.png"];
        }

        return view;
    }
    else if ([[annotation subtitle] isEqual:@"Club"]) {

        MKAnnotationView *view = nil;

        view = [self.mapView dequeueReusableAnnotationViewWithIdentifier:@"myAnnotationIdentifier"];
        if (!view) {
            // Could not reuse a view ...

            // Creating a new annotation view
            view = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"myAnnotationIdentifier"];


            view.enabled = YES;
            view.canShowCallout = YES;
            view.rightCalloutAccessoryView = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
            view.image = [UIImage imageNamed:@"clubs.png"];
        }

        return view;
    }
}

view.image 是完全随机的......要么clubs.pngbeer.png.. 我如何正确地制作它?

这就是我添加注释的方式:

- (void)barLoop {

    for (int i = 0; i<barArray.count; i++) {

        int index = [[barArray objectAtIndex:i]intValue];

        NSString *lati = [[[self.usersLocationArray objectAtIndex:index]
                           valueForKeyPath:@"items.Latitude"]componentsJoinedByString:@""];
        NSString *longi = [[[self.usersLocationArray objectAtIndex:index]
                            valueForKeyPath:@"items.Longitude"]componentsJoinedByString:@""];
        NSString *barNavn = [[[self.usersLocationArray objectAtIndex:index] valueForKeyPath:@"items.Navn"]componentsJoinedByString:@""];


        float latitude = [lati floatValue];
        float longitude = [longi floatValue];

        MKCoordinateRegion region = { {0.0, 0.0} , {0.0, 0.0} };
        region.center.latitude = latitude;
        region.center.longitude = longitude;
        region.span.longitudeDelta = 0.20f;
        region.span.latitudeDelta = 0.20f;
        [mapView setRegion:region animated:NO];

        CLLocationCoordinate2D location;
        location.latitude = latitude;
        location.longitude = longitude;
        Annotation *ann = [[Annotation alloc]initWithPosition:location];
        ann.title = barNavn;
        ann.subtitle = @"Bar";
        [self.mapView addAnnotation:ann];
    }
}

提前致谢 :)

4

1 回答 1

3

您有两种类型的注释,但您只是在最初创建注释时设置图像。因此,如果酒吧的注释从地图视图中滚动出来,而俱乐部的另一个注释滚动,它可能会为俱乐部重用酒吧的注释视图。

有两种方法可以解决这个问题:

  1. 为两种类型的注释视图中的每一种使用不同reuseIdentifier的参数;或者

  2. image无论您的调用是否dequeueReusableAnnotationViewWithIdentifier成功返回值,都设置/重置注释视图。


不相关,但您的viewForAnnotation方法应该:

  1. 您可能希望在检查vs时使用isEqualToString而不是。isEqual@"Bar"@"Club"

  2. nil如果这些子句都没有返回 true,请确保返回if(这绝不应该发生,但是在此例程中您可能会忽略返回任何值)。如果您通过静态分析器(Xcode 的“产品”菜单上的“分析”)运行代码,我猜想这会引起您的注意。

  3. 一个更微妙的观察,但我可能不会依赖注释subtitle来确定使用哪个注释视图,而是要么

    • 有两个注释子类,一个用于酒吧,一个用于俱乐部;或者

    • 在您现有的Annotation类中有一个自定义属性,指示它是酒吧还是俱乐部(我可能会使用enum它)。

    在未来的某个日期,您可能希望将标注的副标题用于“酒吧”与“俱乐部”以外的内容(例如,可能是酒吧/俱乐部的地址?),并且当前模型似乎将 UI 属性(即标注中显示的内容)具有状态属性(即控制要使用的注释视图类型的变量)。没什么大不了的,只是一个建议。

于 2013-09-22T16:33:06.100 回答