繁体   English   中英

在 tableview 中解析字典的 JSON 数组

[英]Parse a JSON array of dictionaries in a tableview

我被困在将字典的 JSON 数组(http://www.cjs-design.nl/json.php)解析为表格视图的时候。 我只想显示标题的第一个,稍后会弄清楚详细视图。

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}


NSString *rawJson = [[NSString alloc] initWithContentsOfURL:[NSURL URLWithString:@"http://www.cjs-design.nl/json.php"]];

// No connection or file not found
if ([rawJson length] == 0) {
    UIAlertView *alert = [[UIAlertView alloc]
                          initWithTitle:@"Foutmelding" message:@"De URL kon niet worden gevonden" delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
    [alert show];
    [alert release];
    [rawJson release];
    return;
}


SBJSON *parser = [[[SBJSON alloc] init] autorelease];
// 1. get the top level value as a dictionary
NSDictionary *jsonObject = [parser objectWithString:rawJson error:NULL];
// 2. get the object as an array
NSArray *list = [jsonObject objectForKey:@"book"];
// 3. iterate the array; each element is a dictionary.    

for (NSDictionary *book in list)
{
    // that contains a string for the key "title"
    NSString *title = [book objectForKey:@"title"];
    cell.textLabel.text = title;
}
return cell;

}

在某个地方,即 viewDidLoad,您需要解析您的 JSON。 然后实现 UITableView 的 dataSource 方法。

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView 
{
  return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
   return [list count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{

    static NSString *CellIdentifier = @"CellIdentifier";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) 
    {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];

    }
    NSDictionary *book = [list objectAtIndex:indexPath.row];
    NSString *title = [book objectForKey:@"title"]; 

    cell.titleLabel.text =  title;
}
- (void)viewDidLoad
{
    [super viewDidLoad]; 
    NSString *rawJson = [[NSString alloc] initWithContentsOfURL:[NSURL URLWithString:@"http://www.cjs-design.nl/json.php"]];
    // No connection or file not found
    if ([rawJson length] == 0) {
        UIAlertView *alert = [[UIAlertView alloc]
                              initWithTitle:@"Foutmelding" message:@"De URL kon niet worden gevonden" delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
        [alert show];
        [alert release];
        [rawJson release];
        return;
    }
    SBJsonParser *parser = [[SBJsonParser alloc] init];
    // 1. get the top level value as a dictionary
    NSDictionary *jsonObject = [parser objectWithString:rawJson error:NULL];  
    NSLog(@"Dict: %@",jsonObject);
    list = [jsonObject objectForKey:@"book"];
    NSLog(@"List: %@",list);
    [rawJson release];
}

当我 NSlog 他们时,他们都打印 Null,所以字符串没有被解析? 该字符串包含 arrays 的字典。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM