我正在使用来自JSON
网络服务的数据填充mapkit地图。每行数据都有一组坐标并添加到地图中。每行还有一个URL。我的代码的问题是,在每个地图的注释标注附件按钮中使用相同的URL(始终是数组中的最后一行数据)。该链接是字典中的最后一个链接。在第4行下方的NSLOG
输出中,是用于每个标注的链接。每个标注当然应该有自己的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
这是我的代码:
使用正确的标注按钮方法pushToSafari
-(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;
}
使用数据填充地图的代码。这是为每个标注按钮
设置JSON的最后一个网址的行link = [currentDeal objectForKey:@"link"];
#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);
}
感谢您的帮助
答案 0 :(得分: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 ...]行以使其生效。