0

我正在使用来自JSONWeb 服务的数据填充 mapkit 地图。每行数据都有一组坐标并添加到地图中。每行还有一个 URL。我的代码的问题在于,每个地图的注释标注附件按钮都使用相同的 URL(始终是数组中的最后一行数据)。该链接是字典中的最后一个链接。在NSLOG第 4 行下方的输出中是用于每个标注的链接。当然,每个标注都应该有自己的 URL。dealAnnotation.title = [currentDeal objectForKey:@"vendor"]; 正在为每个地图对象显示正确的供应商名称。它只是始终显示字典中最后一个 URL 的 URL。

这是日志:

2013-02-27 11:17:35.077 link populated from map is http://www.http://www.****link1
2013-02-27 11:17:35.078 link populated from map is http://www.http://www.****link5
2013-02-27 11:17:35.079 link populated from map is http://www.http://www.****link3
2013-02-27 11:17:35.079 link populated from map is http://www.http://www.****link4

这是我的代码:

具有正确标注按钮方法的 MKAnnotationpushToSafari

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

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

    MKPinAnnotationView *annView=[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"currentloc"];
   // annView.pinColor = MKPinAnnotationColorGreen;


    UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
    [rightButton setTitle:annotation.title forState:UIControlStateNormal];
    [rightButton addTarget:self
                    action:@selector(pushToSafari)
          forControlEvents:UIControlEventTouchUpInside];
    annView.rightCalloutAccessoryView = rightButton;

   // annView.animatesDrop=TRUE;
    annView.canShowCallout = YES;
    annView.calloutOffset = CGPointMake(-5, 5);

    //add custom yd pin
    annView.image = [UIImage imageNamed:@"icon-pin-2.png"];

    return annView;
}

用数据填充地图的代码。这是link = [currentDeal objectForKey:@"link"]; 为每个标注按钮设置 JSON 中最后一个 url的行

#pragma mark - Populate Map
- (void)populateMap:(MKMapView*)map withDeals:(NSArray*) deals
{
    NSLog(@"DEALS" );
    for (NSDictionary *currentDeal in deals) {
        CLLocationCoordinate2D  ctrpoint;
        ctrpoint.latitude = [[[currentDeal objectForKey:@"coords"] objectForKey:@"lat"] doubleValue];
        ctrpoint.longitude =[[[currentDeal objectForKey:@"coords"] objectForKey:@"lng"] doubleValue];
        MKPointAnnotation  *dealAnnotation   = [[MKPointAnnotation  alloc] init];
        dealAnnotation.coordinate = ctrpoint;
        dealAnnotation.title = [currentDeal objectForKey:@"vendor"];
        link = [currentDeal objectForKey:@"link"];

        NSLog(@"link populated from map is %@",link);

        NSDictionary *currDict = @{
        @"EUR": @"€",
        @"GBP": @"₤",
        @"USD": @"$",
        @"BRL": @"R$"
        };

        NSString *currName = [currentDeal objectForKey:@"currency"];
        NSString *currency = [currDict objectForKey:currName];

            dealAnnotation.subtitle = [NSString stringWithFormat:@"%@%i",currency,[[currentDeal objectForKey:@"price"] integerValue ]];

        NSLog(@"current deal currency sym is %@",[currentDeal objectForKey:@"id"]);


        [map setDelegate:self];
        [map addAnnotation:dealAnnotation];
    }
}

带有 JSON 代码的 viewDidAppear: 方法:

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    NSLog(@"MAP VIEW APPEARED");

    CLLocation *location = [locationManager location];
    // Configure the new event with information from the location
    CLLocationCoordinate2D coordinate = [location coordinate];

    NSLog(@"%f %f",coordinate.latitude,coordinate.longitude );
    if ( (double ) coordinate.latitude == 0 &&  (double )  coordinate.longitude == 0 ){
        CustomAlertView *alert = [[CustomAlertView alloc]initWithTitle:@"No GPS Connection" message:@"GPS data is currently unavailable. Please ensure that Location Services are turned on in Settings." delegate:self cancelButtonTitle:@"Ok" otherButtonTitles: nil];
        [alert show];
        return;
    }


    CLLocationDegrees currentLongitude=coordinate.longitude;
    CLLocationDegrees currentLatitude=coordinate.latitude;

    CLLocationCoordinate2D center = CLLocationCoordinate2DMake(currentLatitude, currentLongitude);
    [mapView setCenterCoordinate:center];
    NSString *query = [NSString stringWithFormat:@"http://www.****.com/coords=45.4640,9.1916&country=%@&maxdistance=3000&api.ofilter=track:iphone",APP_ID,lang];
    NSString *locationJsonString = [NSString
                                    stringWithContentsOfURL:[NSURL URLWithString:query]                            encoding:NSStringEncodingConversionAllowLossy|NSUTF8StringEncoding
                                    error:nil];

    SBJSON *parser = [[SBJSON alloc] init];
    NSDictionary *results = [parser objectWithString:locationJsonString error:nil];
    NSString *currentCity = [[[results objectForKey:@"results"] objectAtIndex:0] objectForKey:@"key"];
    NSLog(@"Current city is : %@",currentCity);


    NSString *dealSearch = [NSString stringWithFormat:@"http://****coords=45.4640,9.1916&maxdistance=20&api.ofilter=track:iphone",APP_ID,currentCity];

    NSString *dealsInCurrentLocationJsonString = [NSString stringWithContentsOfURL:[NSURL URLWithString:dealSearch] encoding:NSStringEncodingConversionAllowLossy|NSUTF8StringEncoding error:nil];

    //    SBJSON *parser2 = [[SBJSON alloc] init];
    NSDictionary *dealResults = [parser objectWithString:dealsInCurrentLocationJsonString error: nil];

    NSArray *listOfDeals = [dealResults objectForKey:@"results"];

    [self populateMap:mapView withDeals:listOfDeals];

    NSLog(@"dLongitude : %f", currentLongitude);
    NSLog(@"dLatitude : %f", currentLatitude);
}

以及右侧标注按钮触摸的方法:

  -(IBAction)pushToSafari {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:link]];

    NSLog(@"link touched from offers around me is %@",link);
}

谢谢你的帮助

4

1 回答 1

2

这一行:

link = [currentDeal objectForKey:@"link"];

看起来它将一些名为“link”的实例变量设置为 url。所以它并不特定于任何注释。只有一个名为 link 的变量,所以无论它设置的最后一个值是什么,都会在那里。

还有这一行:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:link]];

不从任何特定注释或任何东西中检索“链接”,只检索该“全局”链接变量。所以任何注释都是一样的。

编辑(添加一种使其工作的方法):

因此,一种方法是扩展 MKPointAnnotation 并向其添加链接属性。然后,您可以使用添加正确的链接

dealAnnotation.link = [currentDeal objectForKey:@"link"]; 

然后使用:

- (void)mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control 

如果附件视图是 UIButton 或扩展 UIControl 的东西,则在单击附件视图时会调用它。然后,您将可以访问注释视图,并可以访问它的注释并获取该特定注释的链接。因此,删除 [rightButton addTarget:self...] 行以使其正常工作。

于 2013-02-27T12:04:14.373 回答