我正在开发一个项目,我需要在表格中填充单元格并将它们显示在屏幕上。我有表格显示,但现在数据显示在单元格中。我尝试过使用断点,发现这个方法永远不会被调用。就在它之前的方法(numberOfRowsInSection)被调用。有什么建议吗?
- (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];
}
Resident *aResident = (Resident *)[appDelegate.residents objectAtIndex:indexPath.row];
cell.textLabel.text = aResident.name;
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
return cell;
}
答案 0 :(得分:0)
您是否为TableView设置了委托和数据源?
答案 1 :(得分:0)
是的,numberOfRowsInSection可能返回0.显示它以及填充数据源的位置。