我正在使用来自JSON
Web 服务的数据填充 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);
}
谢谢你的帮助