テーブルビューにWebとは異なるデータを表示したいのですが、テーブルの1つのセクションの別々のセルにそれらを表示する方法がわかりません。
cell.textLabel.text=app.i_name;
2番目のセル
cell.textLabel.text=app.i_phone;
3番目のセル
cell.textLabel.text=app.i_hours;
4番目のセル
cell.textLabel.text=app.i_address;
5番目のセル
cell.textLabel.text=app.i_email;
インデックスの行のセルは次のようになります
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Single Cell";
SingleCell *cell =(SingleCell *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
UIViewController *c = [[UIViewController alloc] initWithNibName:@"SingleCell" bundle:nil];
cell = (SingleCell *) c.view;
//[c release];
}
appDC * application = [dataArray objectAtIndex:[indexPath row]];
//cell.namelbl.text=application.application_name;
return cell;
}