Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *TodoListTableIdentifier = @"TodoListTableIdentifier";
    TodoTableViewCellController *cell = (TodoTableViewCellController *)[tableView dequeueReusableCellWithIdentifier:TodoListTableIdentifier];
    if ( cell == nil ) 
    {
        NSArray *nib=[[NSBundle mainBundle] loadNibNamed:@"TodoTableViewCellController" owner:self options:nil];
        cell=[nib objectAtIndex:0];
        [cell setSelectionStyle:UITableViewCellSelectionStyleGray];  
    }
    Todo *todo = [self.allTodoArray objectAtIndex:[indexPath row]];


    cell.titleLabel.text = todo.fileTitle;
    cell.money.text = [NSString stringWithFormat:@"Monei:%f",todo.amount];
    cell.name.text = todo.realName;
    cell.date.text = todo.operateTime;

    return cell;
 }

when running :

 NSArray *nib=[[NSBundle mainBundle] loadNibNamed:@"TodoTableViewCellController" owner:self options:nil];

and there is an exception: * Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key date.'

I dont know why is happen , so please help me with this, thank you in advance!

share|improve this question

2 Answers

up vote 5 down vote accepted

The error means that you have connected something to an outlet called date in your nib but that outlet does not exist. Where do you declare date?

share|improve this answer
data is a label of the custom cell,and I declare it in the TodoTableViewCellController.h – Jxdwinter Mar 24 '12 at 14:41
is it data or date? – borrrden Mar 24 '12 at 14:44
next question, where do you call loadNibNamed? – borrrden Mar 24 '12 at 14:45
It's date, and now I change it'name to dateLabel...and check out the nib file, there is no problem. – Jxdwinter Mar 24 '12 at 14:52
Did you miss my 2nd comment? – borrrden Mar 24 '12 at 15:07
show 2 more comments

Hook up all of your outlets in TododTableViewController XIB (particularly the view outlet), and run again.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.