在UITableView中显示字典数组

时间:2012-08-24 09:39:39

标签: objective-c ios

我是新手所以请不要揍我谢谢... 我有以下字典数组

           NSMutableArray *array;
           NSDictionary *dict,*dict1;

viewdidload方法

           array=[NSMutableArray array];
           dict=[NSDictionary dictionaryWithObjectsAndKeys:@"12.00",@"Tomato"];
           [array addObject:dict];

           dict1=[NSDictionary dictionaryWithObjectsAndKeys:@"75.00",@"Cauliflower"];
           [array addObject:dict1];

我想以uitableview格式显示以下项目

番茄12.00

花椰菜75.00

1 个答案:

答案 0 :(得分:3)

创建这样的数据。

   array=[NSMutableArray array];
   dict=[NSDictionary dictionaryWithObjectsAndKeys:@"12.00",@"price",@"Tomato",@"name", nil];
   [array addObject:dict];

  dict1=[NSDictionary dictionaryWithObjectsAndKeys:@"75.00",@"price",@"Cauliflower",@"name", nil];
   [array addObject:dict1];

然后显示在你的tableView

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *MyIdentifier = @"MyIdentifier";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:MyIdentifier] ;
    }
    cell.textLabel.text = [NSString stringWithFormat:@"%@  %@",[[array objectAtIndex:0]objectForKey:@"name"],[[array objectAtIndex:0]objectForKey:@"price"] ];
  return cell;
}