我有一个TableView
我用自定义单元格填充的。在这段代码中,我想在我的不同标签上设置数据,但它似乎不起作用。我不能添加任何网点,不知道为什么我不能这样做。当我尝试使用它更改数据时,cell.textLabel.text = @"Data";
它似乎添加了一个新标签,而不是更改当前标签的文本。
我应该怎么办?下面的代码显示了我如何填充列表。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
SenasteTableCell *cell = [tableView dequeueReusableHeaderFooterViewWithIdentifier:CellIdentifier];
if(cell == nil)
{
NSArray* views = [[NSBundle mainBundle] loadNibNamed:@"SenasteTableCell" owner:nil options:nil];
for (UIView *view in views)
{
cell = (SenasteTableCell*)view;
}
}
return cell;
}