发送到实例的无法识别的选择器(步进器)

时间:2014-06-14 17:17:38

标签: ios objective-c uitableview uistepper

所以,一些昨天工作正常的代码似乎没有正常工作。我在cellForRowAtIndexPath:方法中添加了一个选择器,但它总是抛出PAYPHProductTableViewCell valueChanged:]: unrecognized selector sent to instance 0x8d6a6c0。这是我的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (indexPath.row == 0)
    {
        //some code 
    }
    else
    {
        NSString *cellIdentifier = @"PAYPHProductTableViewCell";
        PAYPHProduct *product = self.myCart[indexPath.row - 1];
        PAYPHProductTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];

        if (cell == nil)
        {
            NSArray *nib = [[NSBundle mainBundle] loadNibNamed:cellIdentifier owner:self options:nil];
            cell = [nib objectAtIndex:0];
        }

        [cell loadName:product.name Price:product.price Quantity:product.quantity];
        [cell.stepper addTarget:self action:@selector(valueChanged:) forControlEvents:UIControlEventValueChanged];
        return cell;
    }
}

这是选择器:

- (IBAction)valueChanged:(UIStepper *)sender
{
    int value = [sender value];
    CGPoint buttonPosition = [sender convertPoint:CGPointZero toView:self.tableView];
    NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:buttonPosition];
    ((PAYPHProduct *) self.myCart[indexPath.row - 1]).quantity = value;
    [self updateNumItemsAndSubtotal];
    [self.tableView reloadRowsAtIndexPaths:@[indexPath, [NSIndexPath indexPathForRow:0 inSection:0]] withRowAnimation:UITableViewRowAnimationNone];
}

所有这些代码都在我的ViewController类中。我已经通过了其他答案,并使方法签名相同,但这并没有帮助。如果有人能够解释发生了什么,那就太棒了,谢谢。

1 个答案:

答案 0 :(得分:1)

异常消息几乎解释了一切。程序将消息发送到不识别它的对象。以下是检查代码的一些建议:

  1. 检查单元格的.xib文件,看看是否为相应的对象(如果有插座)正确设置了UIStepper类。
  2. 确保不要修改步进属性。您可以通过覆盖属性的setter方法或仅通过添加键值观察器来检查。
  3. 就我个人而言,更好的方法是在单元格和viewController之间使用简单的委托。