出于某种原因,我的表视图的NSbutnCype将错误的对象作为参数传递。单击nsbuttoncell后,我正试图读取它的标记。
以下是我的代码的简化版本:

- (int)numberOfRowsInTableView:(NSTableView *)aTableView {
    return 3;
}

- (void)tableView:(NSTableView *)aTableView willDisplayCell:(id)aCell forTableColumn:(NSTableColumn *)aTableColumn row:(int)rowIndex {
    [aCell setTitle:@"Hello"];
    [aCell setTag:100];
}

- (void)buttonClick:(id)sender {
    NSLog(@"THE TAG %d",[sender tag]);
    NSLog(@"THE TITLE: %@",[sender title]);
}

- (void)refreshColumns {
    for (int c = 0; c < 2; c++) {
        NSTableColumn *column = [[theTable tableColumns] objectAtIndex:(c)];

        NSButtonCell* cell = [[NSButtonCell alloc] init];
        [cell setBezelStyle:NSSmallSquareBezelStyle];
        [cell setLineBreakMode:NSLineBreakByTruncatingTail];
        [cell setTarget:self];
        [cell setAction:@selector(buttonClick:)];
        [column setDataCell:cell];
    }
}

- (void)awakeFromNib {
    [self refreshColumns];
}

控制台的结果显示:
    THE TAG:   0
    -[NSTableView title]: unrecognized selector sent to instance 0x100132480

乍一看(至少对我来说)这个标签应该是100,但不是。
此外,(从第二控制台输出中可以看出),发送到“ButnCouter”选择器的参数似乎不正确,我认为它应该接收NSbutnCype,但它正在接收NStabVIEW视图。

最佳答案

显然,发送者是表视图,而不是特定的表视图单元格。
我不知道如何让表单元格成为发送者,但是您可以通过查找单击的行和列的索引来知道单击了哪个单元格,然后您可以在单击单元格后执行应该执行的操作。

- (void)buttonClick:(id)sender {
    NSEvent *event = [NSApp currentEvent];
    NSPoint pointInTable = [tableView convertPoint:[event locationInWindow] fromView:nil];
    NSUInteger row = [tableView rowAtPoint:pointInTable];
    NSTableColumn *column = [[tableView tableColumns] objectAtIndex:[tableView columnAtPoint:pointInTable]];
    NSLog(@"row:%d column:%@", row, [column description]);
}

07-26 09:38