0

我收到这个错误,上面写着只添加到内存的地址。我使用 JSON 链接来加载一些键和值。

这是代码:

NSString *str = @"http://jsonsite";
                           NSURL *linkJson = [[NSURL alloc]initWithString:str];
                           jsonData = [NSData dataWithContentsOfURL:linkJson];
                           if (jsonData != nil)
                           {
                           NSError *error = [[NSError alloc]init];
                           NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingAllowFragments error:&error];

我在这些数组中加载键和值,简单地说:

news_Number = [dict valueForKey:@"NewsID"];
news_Date = [dict valueForKey:@"NewsDate"];
news_Title = [dict valueForKey:@"Titr"];
news_Image = [dict valueForKey:@"FileName"];
news_service = [dict valueForKey:@"RootServiceName"];
4

1 回答 1

0

忽略这一点。这与您的代码无关。如果您对这意味着什么感兴趣,这意味着内部 http 加载机制未能缓存您的请求响应。祝你好运!

于 2013-09-06T11:50:43.777 回答