カスタムを作成しました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;
}
これについて私を助けてください...事前に感謝します