我正在开发一个iOS应用程序,它将列出我存储在NSDictionary中的一些数据。我将使用表格视图来执行此操作,但遇到一些问题我应该如何开始。
数据看起来像这样:
category = (
{
description = (
{
id = 1;
name = Apple;
},
{
id = 5;
name = Pear;
},
{
id = 12;
name = Orange;
}
);
id = 2;
name = Fruits;
},
{
description = (
{
id = 4;
name = Milk;
},
{
id = 7;
name = Tea;
}
);
id = 5;
name = Drinks;
}
);
我试图将所有“类别”值作为表中的一个部分,并将正确部分中每个“描述”的“名称”。正如我所提到的,不知道如何从这里开始,我如何为每个“类别”获得一个新的部分?
答案 0 :(得分:2)
您“只需要”实现表视图数据源方法来提取信息 从你的字典: - )
如果self.dict
是上面的字典,则self.dict[@"category"]
是包含的数组
每节一个字典。因此(使用“现代Objective-C下标语法”):
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return [self.dict[@"category"] count];
}
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
return self.dict[@"category"][section][@"name"];
}
对于每个部分,
self.dict[@"category"][section][@"description"]
是一个数组,每行包含一个字典。因此:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [self.dict[@"category"][section][@"description"] count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
NSString *name = self.dict[@"category"][indexPath.section][@"description"][indexPath.row][@"name"];
cell.textLabel.text = name;
return cell;
}