0

我有一个自定义单元格,在这个自定义单元格中我有一个按钮和一个标签:

#import <UIKit/UIKit.h>

@interface ListCell : UITableViewCell{

}
@property (nonatomic, retain) IBOutlet UIButton* buttonContent;
@property (nonatomic, retain) IBOutlet UILabel* detailContent;

@end

当我处理按钮的点击事件时:

- (IBAction)expandListCell:(id)sender{
    UIButton *button = (UIButton *)sender;
    ListCell *cell = (ListCell *)button.superview;
    NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
    cell.detailContent.text = @"FALSE"; // It throw an exception   
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"listCell";
    ListCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];   
    cell.buttonContent.tag = indexPath.row;
    return cell;
}

当我尝试从我的自定义单元格(ListCell)访问任何项目时,它会引发异常:

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UITableViewCellContentView detailContent]: unrecognized selector sent to instance 0x8887ca0'

我认为我获得自定义单元格的方式是错误的。有谁知道如何正确获取它?
预先感谢

4

2 回答 2

4

你确定你打电话给正确的班级吗?你确定你的按钮的超级视图类是 ListCell 类吗?

试着检查一下:

    // (...)
    ListCell *cell = (ListCell *)button.superview;
    if ([cell.class isSubclassOfClass:[ListCell class]]) {
        ///// just a check for indexPath: /////
        NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
        NSLog(@"current indexPath: %@", indexPath );
        ///////////// END CHECK ///////////////
        cell.detailContent.text = @"FALSE"; 
    }else{
        NSLog(@"NOT THE RIGHT CLASS!!!");
    }
于 2012-04-13T09:55:10.767 回答
1

好的,我明白了,抱歉没有正确回答您的问题,您可以做的只是在将其添加到单元格之前为您的标签视图分配一个 teg,然后在检索时使用

UILabel *name = (UILabel *)[cell viewWithTag:kLabelTag];

并设置标签的文本

于 2012-04-13T09:54:10.780 回答