为什么Custom UITableViewCell会导致NSInvalidArgumentException?

时间:2012-02-29 07:08:40

标签: iphone uitableview unrecognized-selector

我创建了一个自定义UITableViewCell,但是当我将单元格出列时,有时它会抛出一个NSInvalidArgumentException:

  *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UITableViewCell lblMonth]: unrecognized selector sent to instance 0x6aa7df0     

现在,我的自定义UITableViewCell确实有一个属性lblMonth,所以我很困惑为什么它会抛出这个错误。下面是我用来使单元格出列的代码:

  -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {   

        CustomCell *cell;

        cell = [(CustomCell*)[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];

        if (cell == nil){

            NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"New_Phone" owner:nil options:nil];


            for(id currentObject in topLevelObjects)
            {
                if([currentObject isKindOfClass:[CustomCell class]])
                {
                    cell = (CustomCell *)currentObject;
                    break;
                }
            }
        }


           CGFloat emival= emi;
            CGFloat curinterest = balarray[indexPath.row] * interset;
            if(indexPath.row == tenure){
                emival = balarray[indexPath.row-1] + curinterest;
            }
            CGFloat curamnt = emival - curinterest;
        balarray[indexPath.row]=balarray[indexPath.row]-curamnt;


           [[cell lblMonth]setText:[NSString stringWithFormat:@"%d", indexPath.row+1]];
           [[cell lblEMI]setText:[NSString stringWithFormat:@"%.f", emival]];
           [[cell lblInterest]setText:[NSString stringWithFormat:@"%.f", curinterest]];
           [[cell lblPrinicipal]setText:[NSString stringWithFormat:@"%.f", curamnt]];
           [[cell lblBalance]setText:[NSString stringWithFormat:@"%.f", balarray[indexPath.row]]];

        return cell;
}

请帮助我...在此先感谢

2 个答案:

答案 0 :(得分:2)

问题在于以下代码行:

cell = [(CustomCell*)[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];

你应该使用

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

因为当你检查nil时它永远不会是nil(如果是这样的话就不会进入)并且创建了一个UITableViewCell对象而不是自定义单元格对象。但那不是你想要的。您希望从nib加载单元格并将其出列以便重复使用。

答案 1 :(得分:0)

请参阅您的代码,您需要使用Given Lines更改FewLines并保持相同。 这是因为你犯了一些错误只是将你的代码与下面的代码进行比较。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
 //below Line get cells if they Cells Exist.
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
//below Line Checking precrated Cells Exist
if (cell == nil) {
   cell = [(CustomCell*)[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault        reuseIdentifier:CellIdentifier];
}