我在View Controller中有一个UITableView。很奇怪,因为标题显示和标题文本,但不是单元格文本。
- (void)viewDidLoad
{
table.delegate = self;
selection= [[NSMutableArray alloc] init];
[selection addObject:@"text"];
[selection addObject:@"text"];
[selection addObject:@"text"];
...}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
// configure the cell in each row
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]autorelease];
}
NSString *cellValue = [selection objectAtIndex:indexPath.row];
cell.textLabel.text = cellValue;
// cell.textColor=[UIColor blackColor];
return cell;
}
答案 0 :(得分:1)
尝试添加此行
table.dataSource = self;
这样,只要您的类符合UITableViewDataSource协议,就会调用所有表视图数据源方法(包括cellForRowAtIndexPath :)。