-1

我在下面给出了一些 json 数据,我想将其显示在表中,其中部分标题为部门、设计、员工、开发、员工。

我在 中使用了静态数据 numberOfSectionsInTableViewtitleForHeaderInSection但我想使用动态数据来做到这一点。

我怎样才能做到这一点?

{                                                                                                                                                                          
    "Departments":[
        {
            "name":"Designing",
            "id":"1.1",
            "Employees":[
                {
                    "name":"Ramesh",
                    "id":"1.1.1",
                    "salary":"4lakhs"
                },
                {
                    "name":"Suresh",
                    "id":"1.1.2",
                    "salary":"4lakhs"
                }
            ]
        },
        {
            "name":"Developing",
            "id":"1.2",
            "Employees":[
                {
                    "name":"Ram",
                    "id":"1.2.1",
                    "salary":"4lakhs"
                },
                {
                    "name":"Sam",
                    "id":"1.2.2",
                    "salary":"4lakhs"
                }
           ]
      }
}
4

1 回答 1

0

首先,您必须从您指定的字符串 JSON 对象创建一个 NSDictionary。

    NSDictionary *myDict = [NSJSONSerialization JSONObjectWithData:webData options:nil error:NULL];

然后在表视图委托方法中:

    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
        return [[myDict valueForKey:@"Departments"] count];
    }

    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
    {
        return [[[[myDict valueForKey:@"Departments"] objectAtIndex:section] valueForKey:@"Employees"] count];
    }

    - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
    {
        return [[[myDict valueForKey:@"Departments"] objectAtIndex:section] valueForKey:@"name"];
    }

或者至少我会尝试像这样设置它们。

于 2012-10-03T07:56:55.177 回答