У меня есть таблица, и я хочу показать там текст; но я не могу, я не знаю почему. Мое приложение основано на представлении, и я не хочу менять его на контроллер табличного представления. Вот код:
.h
{
NSArray *array;
IBOutlet UITableView *table;
}
.m
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return [array count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
cell.textLabel.text = [array objectAtIndex:indexPath.row];
// Configure the cell
return cell;
}
Пожалуйста, помогите мне, потому что я пытаюсь решить эту проблему, и я не знаю, что не так, почему Таблица не показывает массив!
Спасибо!