ここで私の答えを見てください: -
https://stackoverflow.com/posts/16322989/edit
それがあなたを助けることを願っています
配列値を表示するには、次のコードを使用します。
Now in the cellForRowAtIndexPath:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
//Add the Bg Image to the cell
//Add the Label
UILabel *cellTitle=[[UILabel alloc]initWithFrame:CGRectMake(15, 7, 300, 30)];
[cellTitle setBackgroundColor:[UIColor clearColor]];
[cellTitle setFont:[UIFont fontWithName:@"Helvetica-Bold" size:12]];
[cellTitle setTextColor:[UIColor darkGrayColor]];
[cellTitle setText:[[array objectAtIndexPath:indexPath.row] objectForKey:@"Name"]];
[cell.contentView addSubview:cellTitle];
return cell;
}
numberOfRowsInSection にも:
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [array count];
}