0

一个小问题我创建了一个自定义 UITablecell 但在单元格中它需要解析数据所以我连接IBOutlet UILabel *One;到 UILabel 但是当我在做

One.text = @"Lorem..."; 出现错误显示我在 mijn viewController 中导入了 UITablecell.h。

**Use of undeclared identifier 'One'**

/

   - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        static NSString *CellIdentifier = @"Cell";

       ViewControllerCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (cell == nil) {

            NSArray* views = [[NSBundle mainBundle] loadNibNamed:@"ViewControllerCell" owner:nil options:nil];

            for (UIView *view in views) {
                if([view isKindOfClass:[UITableViewCell class]])
                {
                    cell = (ViewControllerCell*)view;
                }


            }

        }
One.text = @"Lorem...";
            return cell;
    }
4

2 回答 2

1

在这种情况下,您的自定义UITableViewCell类的实例将是cell,因此您需要像这样访问它

cell.One.text = @"Lorem..";
于 2012-04-28T16:25:56.333 回答
0

首先,您必须将 tableViewCell 类型转换为您的自定义单元格。

{
  YourCustomCell *objCustomCell=(YourCustomCell *)[tableView cellForRowAtIndexPath:indexPathForThatRow];
  objCustomCell.One.text=@"YourDesiredstringvalue";
}
于 2012-05-14T12:58:44.497 回答