1

私は初心者なので、私を叩かないでくださいありがとう...私は次の辞書の配列を持っています

           NSMutableArray *array;
           NSDictionary *dict,*dict1;

viewdload メソッド

           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

4

1 に答える 1

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;
}
于 2012-08-24T09:47:13.463 に答える