我试图在json的地图上显示信息,但没有任何反应我觉得有些东西丢失,所以信息可以显示在地图上 管理以使json工作并获取有关日志的信息,现在我想知道创建nsdictionary和数组的人,以便我可以在mapview上显示信息。 到目前为止,这是阵列的战争:
NSData *data =[NSData dataWithContentsOfURL:[NSURL URLWithString:@"URL"]];
NSMutableDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
NSLog(@"Datos Obtenidos:\n%@",dict);
NSDictionary *cortes;
NSError* error;
NSArray *jsonArray = [NSJSONSerialization JSONObjectWithData:data
options:kNilOptions
error:&error];
NSMutableArray *jsonCheckins = [NSMutableArray array];
for(NSDictionary *jsonElement in jsonArray){
InitViewController *checkin = [InitViewController checkinFromDictionary:jsonElement];
[jsonCheckins addObject:checkin];
}
管理添加此代码,但地图视图上仍未显示信息:
- (CLLocationCoordinate2D) checkinCoordinate {
CLLocationCoordinate2D coordinate;
coordinate.latitude = self.checkin.latitud;
coordinate.longitude = self.checkin.longitud;
return coordinate;}
- (void)showCheckinAnnotation {
MKPointAnnotation *annotationPoint = [[MKPointAnnotation alloc] init];
annotationPoint.coordinate = [self checkinCoordinate];
annotationPoint.title = self.checkin.type;
annotationPoint.subtitle = self.checkin.description;
[self.mapView addAnnotation:annotationPoint];}
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation {
MKAnnotationView *annotationView= nil;
if(annotation != mapView.userLocation) {
static NSString *annotationViewId = @"annotationViewId";
annotationView = (MKAnnotationView *)[mapView
dequeueReusableAnnotationViewWithIdentifier:annotationViewId];
if (annotationView == nil) {
annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:annotationViewId];
}
}
return annotationView;}
答案 0 :(得分:2)
我们没有看到您的checkinFromDictionary
,因此我们很难发表评论,因为我们从未看到您设置此self.checkin
属性,但这令人担忧。但是我们需要看到更多代码来进一步评论。
但是,只是为了演示,这是一个查找并添加所有注释而无事故的方法:
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://www.buenosairescortes.com.ar/capitalfederalcortes/getCortes.php"]];
NSError *error;
NSArray *array = [NSJSONSerialization JSONObjectWithData:data
options:0
error:&error];
if (error)
{
NSLog(@"%s: error=%@", __FUNCTION__, error);
return;
}
for (NSDictionary *dictionary in array)
{
MKPointAnnotation *annotation = [[MKPointAnnotation alloc] init];
annotation.coordinate = CLLocationCoordinate2DMake([dictionary[@"latitude"] doubleValue],
[dictionary[@"longitude"] doubleValue]);
annotation.title = dictionary[@"type"];
annotation.subtitle = dictionary[@"description"];
[self.mapView addAnnotation:annotation];
}
(顺便说一下,我使用CLLocationCoordinate2dMake
方法,它是CoreLocation.framework
的一部分,但你也可以使用你的方法。)
就您的viewForAnnotation
而言,似乎没有必要,因为您似乎没有做任何默认情况下不会做的事情。但是,让我们假设您想要它(因为您可能正在计划进一步定制该方法)。
您提供的例程存在两个问题:
您正在创建一个MKAnnotationView
除非您设置其image
(或将其子类设置为设置其image
的类),否则它不会执行任何操作。如果您只想要标准引脚,请改用MKPinAnnotationView
。
一个更微妙的问题是,如果注释视图成功出列,则不会重置其注释。所以,我建议在else
语句中添加if (annotation == nil)
子句。
因此,产生:
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{
MKAnnotationView *annotationView= nil;
if (![annotation isKindOfClass:[MKUserLocation class]])
{
static NSString *annotationViewId = @"annotationViewId";
annotationView = (MKAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:annotationViewId];
if (annotationView == nil)
{
annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:annotationViewId];
}
else
{
annotationView.annotation = annotation;
}
}
return annotationView;
}
此方法还会通过
检查注释类是否不是成员if (![annotation isKindOfClass:[MKUserLocation class]])
{
// do annotation stuff here
}
而不是
if (annotation != mapView.userLocation)
{
// do annotation stuff here
}
这是Apple在Location Awareness Programming Guide中描述的方法,因此它可能更安全。一般来说,检查两个对象之间的相等性并不完全可靠(也许你在这里很幸运,但它通常不是谨慎的)。支持比较操作的对象通常具有前缀为isEqual
的相等方法。话虽如此,在这里检查班级成员资格就足够了。