我想制作一个自定义表格单元格来自动处理文本字段的填充。我的想法是我只需将一个对象传递给单元格类,然后单元格将自动填充字段。一切正常,除了单元格内没有按钮工作,它们都是不可点击的。我究竟做错了什么?
主屏幕:
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        NSInteger row = [indexPath row];
        Claim *claim = [statementsArray objectAtIndex:row];
        NSString * strIndentifier;
        strIndentifier = @"StatementDetailsCellIdentifier";
        StatementDetailsCell *cell = (StatementDetailsCell *) [tableView dequeueReusableCellWithIdentifier:strIndentifier];
        cell.hasWarranty = claim.hasWarranty;
        if(cell == nil) 
        {
            [[NSBundle mainBundle] loadNibNamed:@"StatementDetailsCell" owner:self options:nil];
            cell = [statementCell initWithClaim:claim reuseIdentifier:strIndentifier];
            cell.selectionStyle = UITableViewCellSelectionStyleNone;        
         }
           return cell;
    }
单元格.m:
    -(id)initWithClaim:(Claim *)_claim reuseIdentifier:(NSString *)reuseIdentifier
    {
        self = [self initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:reuseIdentifier];
        claim = _claim;
        [self populate];
        return self;
    }
    -(void)populate 
    {
        barcodeLabel.text = claim.barcode;
        NSLog(@"claim is %@", [claim description]);
        if(claim.points == 0 || claim.points == 0.00)
            valueLabel.text = @"Pending";
        else
            valueLabel.text = [NSString stringWithFormat:@"£%.2f", claim.points];
        modelLabel.text = claim.product;
        warrantyLabel.text = claim.warranty.name;
        APIRequest *apiRequest = [[APIRequest alloc] init];
        dateLabel.text = [apiRequest parseDate:claim.date];
        //hasWarranty = claim.hasWarranty;
        double timeS = [apiRequest getUnixTimestamp:claim.date];
        NSDate *now = [NSDate date];
        NSDate *trueDate = [NSDate dateWithTimeIntervalSince1970:timeS];
        double timeDiffrece = [now timeIntervalSinceDate:trueDate];
        double threemonths = 90*24*3600;
        //Warranty Button
        if(claim.hasWarranty)
        {
            UIImage *buttonImage;
            //13-6-2013
            if([claim.warranty.name isEqualToString:@"Pending"])  {
                buttonImage = [UIImage imageNamed:@"imgBtnWarrantyPending.png"];
                pendingHelp.hidden = NO;
            } else {
                pendingHelp.hidden = YES;
                buttonImage = [UIImage imageNamed:@"warranty_claimed.png"];
            }
            [warrantyButton setBackgroundImage:buttonImage forState:UIControlStateNormal];
            [warrantyButton setBackgroundImage:buttonImage forState:UIControlStateHighlighted];
            [warrantyButton removeTarget:nil action:NULL forControlEvents:UIControlEventAllEvents];
        } 
        else 
        {
            pendingHelp.hidden = YES;
            if(false) {
                [warrantyButton setBackgroundImage:nil forState:UIControlStateNormal];
                [warrantyButton removeTarget:nil action:NULL forControlEvents:UIControlEventAllEvents];
            } else {
                [warrantyButton setTag:claim.ID];
                UIImage *buttonImage = [UIImage imageNamed:@"add_warranty.png"];
                [warrantyButton setBackgroundImage:buttonImage forState:UIControlStateNormal];
                [warrantyButton setBackgroundImage:nil forState:UIControlStateHighlighted];
                [warrantyButton addTarget:self action:@selector(haha:) forControlEvents:UIControlEventTouchDown];
                warrantyButton.userInteractionEnabled = YES;
                warrantyButton.enabled = YES;
            }
        }
    }