-1

我有一个表格视图,其中每个单元格都添加了一个对象。现在在 cellForRowAtIndexPath 中,我想根据包含的对象执行一些 GUI 操作。例如。

  static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}

    // Got object.
    modal_info *obj = [self.listData objectAtIndex: [indexPath row]];

    if (obj->status != OFI_VC_USER_STATE_HEADING)
    {
        cell.textLabel.text = obj->combined_name;
        cell.detailTextLabel.text = obj->email;

        // Set Image
        UIImage *cellImage = [UIImage imageNamed:@"silhouette_user.png"];
        cell.imageView.image = cellImage;
    } else {
        cell.imageView.image = nil;
        cell.detailTextLabel.text = nil;
        cell.textLabel.text = nil;
    }
    return cell;

但是在表格视图中,即使我设置为零,标题行也会显示名称和图像。我做错什么了吗?

提前致谢。

4

1 回答 1

0

@neon samuel 我已经修好了。这是我的错误,我在添加时没有正确设置值。不管怎么说,还是要谢谢你。:) – 费罗兹·莫希丁

于 2012-08-14T04:25:52.520 回答