多个信息窗口在iOS

时间:2016-02-08 12:37:03

标签: ios objective-c google-maps google-maps-markers infowindow

我已经实现了infoWindow来显示我的多个标记的数据。但我可以通过信息窗口显示所有相同的数据。

如何显示与该标记相关的数据,以便不应重复?

这是我的代码:

     for (int i = 0 ; i < jsonDataDict.count; i ++) {
        NSDictionary *newDict = [jsonDataDict objectAtIndex:i ];

        double latitude = [[newDict valueForKey:@"lat"]doubleValue];
        double longitute = [[newDict valueForKey:@"lng"]doubleValue];


      nameStr = [newDict valueForKey:@"name"];


      countJson = i ;

        CLLocationCoordinate2D position = CLLocationCoordinate2DMake(latitude, longitute);
        GMSMarker *marker = [GMSMarker markerWithPosition:position];
        marker.title = [newDict valueForKey:@"name"];
      //  marker.icon = [UIImage imageNamed:@"pin11.png"];
        marker.icon = [self image:[UIImage imageNamed:@"pinPopoye.png"] scaledToSize:CGSizeMake(75.0f, 60.0f)];
        marker.appearAnimation = kGMSMarkerAnimationPop;
        marker.infoWindowAnchor = CGPointMake(1.1, 0.70);
        marker.map = self.mapView;
        [self mapView:self.mapView markerInfoWindow:marker];


    }
}

- (UIView *)mapView:(GMSMapView *)mapView markerInfoWindow:(GMSMarker *)marker
{    UIView *customView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 60, 25)];
   customView.backgroundColor = [UIColor colorWithRed:71.0/255.0 green:65.0/255.0 blue:65.0/255.0 alpha:0.8];
    customView.layer.cornerRadius = 5;
    customView.layer.masksToBounds = YES;

    //  Orange Color ==== [UIColor colorWithRed:254.0/255.0 green:165.0/255.0 blue:4.0/255.0 alpha:0.5];
       UILabel *nameLabel = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 60, 10)];
   nameLabel.text = nameStr;
   nameLabel.textColor = [UIColor whiteColor];
   nameLabel.textAlignment = NSTextAlignmentCenter;
   nameLabel.font = [UIFont systemFontOfSize:8.0];
    [customView addSubview:nameLabel];

      return customView;
}

1 个答案:

答案 0 :(得分:2)

替换此声明:

nameLabel.text = nameStr;

使用:

nameLabel.text = marker.title;

问题是您使用共享的NSStringnameStr,它会在for循环的每次迭代时被覆盖。因此,所有标签在最终显示时共享相同的字符串值。你也可以这样做:

nameLabel.text = [nameStr copy];

它应该有用 - 但我认为在你的代码中使用nameStr只是之前某些“hack”的残余。