0

我正在尝试显示我的 JSON 文件中的图钉,但它们没有出现任何帮助将不胜感激:按钮也将调用单独的 JSON 页面。

my code for mapview.m:

- (void)viewDidLoad
{
[super viewDidLoad];

NSURL *url = [NSURL URLWithString:@"https://w1281595.users.ecs.westminster.ac.uk/shops.php"];
NSData *data = [NSData dataWithContentsOfURL:url];

NSError *error;
NSArray *shoparray = [NSJSONSerialization JSONObjectWithData:data
                                                     options:0
                                                       error:&error];
if (error != nil)
{
}

CLLocationCoordinate2D location;                         
NSMutableArray *newAnnotations = [NSMutableArray array]; 
MKPointAnnotation *newAnnotation;                       

for (NSDictionary *dictionary in shoparray)
{
        location.longitude = [dictionary[@"Longitude"] doubleValue];
        location.latitude = [dictionary[@"Latitude"] doubleValue];

        newAnnotation = [[MKPointAnnotation alloc] init];
        newAnnotation.title = dictionary[@"Name"];
        newAnnotation.coordinate = location;      

    }

    [self.mapview addAnnotations:newAnnotations];
4

1 回答 1

0

newAnnotation您的循环每次都会创建一个。newAnnotations然后添加一个调用到地图的数组。但是您忘记将任何内容放入newAnnotations数组中。

于 2013-04-21T07:24:24.160 回答