单元格文本没有打开-UITableView

时间:2013-07-24 15:32:57

标签: objective-c uitableview

我在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;
}

1 个答案:

答案 0 :(得分:1)

尝试添加此行

table.dataSource = self;

这样,只要您的类符合UITableViewDataSource协议,就会调用所有表视图数据源方法(包括cellForRowAtIndexPath :)。