0

抱歉,如果这是初学者的问题。我正在尝试使用部分和自定义单元格格式填充 UITableView。

我已经调试了这段代码,每个标签上的标签都返回了正确的值:

-(UITableViewCell *)cellForIndexPath:(NSIndexPath *)indexPath forData:(NSObject *)cellData {
static NSString *CellIdentifier = @"MatterWIPCell";

RVMatterWIPExceptionSummary *matterWIPSummary = (RVMatterWIPExceptionSummary *)cellData;

UITableViewCell *cell = [self.searchableTable dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}

UILabel *label;

label = (UILabel *)[cell viewWithTag:1];
label.text = [[DataFormat dataFormat] stringLabelFormat: matterWIPSummary.fileNumber];

label = (UILabel *)[cell viewWithTag:2];
label.text = [[DataFormat dataFormat] stringLabelFormat: matterWIPSummary.clientName];

label = (UILabel *)[cell viewWithTag:3];
label.text = [[DataFormat dataFormat] stringLabelFormat: matterWIPSummary.matterTitle];

label = (UILabel *)[cell viewWithTag:4];
label.text = [[DataFormat dataFormat] currencyFormat:matterWIPSummary.workInProgress withDecimals:YES];

label = (UILabel *)[cell viewWithTag:5];
label.text = [[DataFormat dataFormat] stringLabelFormat:matterWIPSummary.matterDescription];

[cell setSelectionStyle:UITableViewCellSelectionStyleNone];
return cell;

}

我已经检查了它使用相同单元格标识符的情节提要。

我是否错过了一些东西,所以即使单元格永远不会返回零,数据也不会显示?

谢谢你

4

1 回答 1

-1

添加 [cell.contentView addSubview:label]; 在返回单元之前;当然,用这样的东西声明标签 UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(10, 0, 320, 25)];

于 2013-05-27T05:26:24.067 回答