自定义uitableviewcell是零

时间:2013-09-12 14:11:22

标签: iphone ios uitableview custom-cell

我有一个表,我想用自定义tableViewCells填充它,以便为用户提供有关订单的信息。问题是tableview显示了单元格,但没有用我需要的信息填充它们。当我插入断点时,我发现细胞是无数的,不管我做什么。这是我的cellForRowAtIndexPath:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    OrderOverViewCell *cell = (OrderOverViewCell *)[tableView dequeueReusableCellWithIdentifier: @"orderOverviewCell"];

    OrderClass *orderClass = nil;
    if (filteredArray == nil) {
        if (sortedArray.count >0) {
        orderClass = sortedArray[indexPath.row];
        }
    }
    else if (filteredArray != nil) {
        orderClass = filteredArray[indexPath.row];
    }

    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateFormat:@"dd/MM/yyyy HH:mm"];
    NSString *orderDate = [dateFormatter stringFromDate:orderClass.orderDate];

    cell.orderTitle.text = [NSString stringWithFormat:@"%@%@ %@",orderClass.companyName,@",", orderDate];
    cell.orderDetail.text = [NSString stringWithFormat:@"%@ %@ %@ %@.", @"order nummer:",orderClass.orderNumber, @"betaling:", orderClass.orderPaymentType];


    if ([orderClass.orderDelivery isEqualToString:@"Bezorgen"]) {
        cell.orderDelivery.text = [NSString stringWithFormat:@"Levering: Bezorgen op %@, %@, %@", orderClass.orderAdress, orderClass.orderAdressZip, orderClass.orderCity];
    }

    if ([orderClass.orderDelivery isEqualToString:@"Afhalen"]) {
        cell.orderDelivery.text = [NSString stringWithFormat:@"Levering: Afhalen op ingestelde datum en tijd."];
    }

    cell.orderIndication.image = nil;
    if ([orderClass.preparing isEqualToString:@"1"]) {
        if ([orderClass.ready isEqualToString:@"1"] ){
            if ([orderClass.delivered isEqualToString:@"1"]){
                cell.orderIndication.image = [UIImage imageNamed:@"order_3.png"];
            }
            else {
                cell.orderIndication.image = [UIImage imageNamed:@"order_2.png"];
            }
        }
        else {
            cell.orderIndication.image = [UIImage imageNamed:@"order_1.png"];
        }
    }
    cell.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"orderCellBG.png"]];

    return cell;
}

有人知道我做错了什么吗?任何帮助都将非常感激。

4 个答案:

答案 0 :(得分:0)

在viewDidLoad中添加此项以指示要使用的单元格:

UINib *const cell = [UINib nibWithNibName:@"nibName" bundle:[NSBundle mainBundle]];
[_tableView registerNib:cell forCellReuseIdentifier:@"orderOverviewCell"];

答案 1 :(得分:0)

如果您在Prototype Cell内将自定义单元格定义为Storyboard,请确保您已分配了正确的标识符(orderOverviewCell

enter image description here

根据Apple developer docs

  

因为原型单元是在故事板中定义的,所以dequeueReusableCellWithIdentifier:方法总是返回一个有效的单元格。您无需针对nil检查返回值并手动创建单元格。

答案 2 :(得分:0)

要检查的事情!如果您使用的是Storyboard,并且您的单元格是一个原型单元格,它包含在UITableView中而不是单独的Nib文件中,那么请确保唯一标识符是正确的。

案例和拼写很重要,因此请确保在单击单元格时在代码和故事板中正确命名“orderOverviewCell”。

OrderOverViewCell *cell = (OrderOverViewCell *)[tableView dequeueReusableCellWithIdentifier: @"orderOverviewCell"];

上面的代码将实例化单元格并返回一个有效的单元格,因此您无需检查nil或任何内容。我也假设您正在使用UITableViewController,而不是使用UITableView作为插座的ViewController。

答案 3 :(得分:0)

将其改为此解决了它:

OrderOverViewCell *cell = (OrderOverViewCell *)[self.tableView dequeueReusableCellWithIdentifier: @"orderOverviewCell"];