1

我已经设置了一个异常断点,并收到错误unrecognized selector sent to instance实例是 UITableViewCell 本身。该应用程序使用 CoreData,当 UITextfield 结束编辑时,我想将文本保存到 NSManagedObject。

这是textFieldDidEndEditing我的 TableViewController 中的方法:

- (void)textFieldDidEndEditing:(UITextField *)textField {
    MCSwipeTableViewCell *cell = (MCSwipeTableViewCell *) textField.superview.superview;
    TehdaItem *item = [self.fetchedResultsController objectAtIndexPath:[self.tableView indexPathForCell:cell]];


    item.itemTitle = cell.itemLabel.text; //The exception gets thrown on this line
// itemLabel is a UITextField and itemTitle is a string attribute of TehdaItem the NSManagedObject

    NSError *error;
    [item.managedObjectContext save:&error];

    if (![self.fetchedResultsController performFetch:&error]) {
        // Replace this implementation with code to handle the error appropriately.
        // abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
        NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
        abort();
    }

}

<UITextFieldDelegate>设置为我的 TableViewController 并且我将它设置为 UITextField 的委托。无法真正弄清楚这里的问题是什么。

编辑:删除最后一个superview电话MCSwipeTableViewCell *cell = (MCSwipeTableViewCell *) textField.superview.superview;已经解决了这个问题。

4

1 回答 1

1

显然,您的 UITextField 的超级视图的超级视图属于 UITableViewCell 类型,而不是您期望的 MCSwipeTableViewCell 对象。查看单元格的创建位置,这很可能是 cellForRowAtIndexPath 和/或它是您在界面构建器/故事板编辑器中所做的原型单元格的类分配。

于 2013-03-15T20:50:09.617 回答