Разбор JSON, показывающий нулевое значение - PullRequest
0 голосов
/ 23 июля 2011

Я анализирую данные, он получает все данные в словаре, но когда я проверяю значение с помощью NSLog, он показывает нулевое значение

SBJsonParser *parser = [[SBJsonParser alloc] init];
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.krsconnect.no/community/api.html?method=bareListEventsByCategory&appid=620&category-selected=350&counties-selected=Vest-Agder,Aust-Agder"]];
NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSString *json_string = [[NSString alloc] initWithData:response encoding:NSUTF8StringEncoding];
NSDictionary *object = [parser objectWithString:json_string error:nil];
//appDelegate.books = [[NSMutableArray alloc] initWithCapacity:0];

appDelegate.books1 = [[NSMutableArray alloc] init];


NSArray *results = [parser objectWithString:json_string error:nil];
for (int i=0; i<[results count]; i++) {
    Book1  *aBook = [[Book1 alloc] initWithDictionary:[results objectAtIndex:i]];
    [appDelegate.books1 addObject:aBook];
    Book1 *mybook=[appDelegate.books1 objectAtIndex:i];
    NSString*test=mybook.location;
    NSLog(test);
}

Dicionary парсинг

 - (id)initWithDictionary:(NSDictionary*) dict {

    self.date = [dict valueForKey:@"date"];
    self.location =  [dict valueForKey:@"location"];
    self.municipality = [dict valueForKey:@"municipality"];
    self.title =  [dict valueForKey:@"title"];

    return self;

 }

Ответы [ 2 ]

1 голос
/ 09 ноября 2011

Я предполагаю, что в вашем словаре нет «местоположения», и это согласуется с тем, что я вижу, возвращаясь с этого веб-сайта. Он отправляет обратно массив словарей, которые содержат массивы словарей. Вам нужно извлечь один из этих внутренних словарей, чтобы найти «местоположение».

[

    {
        "date":1320883200000,
        "events":[
            {
                "affectedDate":1320883200000,
                "event":{
                    "appId":620,
                    "eventId":20672,
                    "location":"Samsen Kulturhus",
                    "municipality":"Kristiansand",
                    "title":"AKKS kurs høsten 2011"
                }
            },
         ....
0 голосов
/ 14 февраля 2012

Попробуйте:

- (id)initWithDictionary:(NSDictionary*) dict {
   self = [super init];
   if(self) {
      self.date = [dict valueForKey:@"date"];
      self.location =  [dict valueForKey:@"location"];
      self.municipality = [dict valueForKey:@"municipality"];
      self.title =  [dict valueForKey:@"title"];
   }
   return self;
}
...