вам нужно просто заполнить ячеки табл елементами массива?
ну это не сложно,советую почитать про это(поскколько это основа основ)
- (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];
}
// !!!
cell.textLabel.text = [students objectAtIndex:indexPath.row];
return cell;
}
students - наш массив
про табл -
www.imaladec.com/story/uitableview