如果我想在我的NSTableCellView中有一个编辑/信息按钮:
>谁应成为按钮动作的目标?>目标如何获得与按钮所在单元格关联的objectValue?
我最终想要显示一个基于objectValue的popover / sheet.
- (IBAction)showPopover:(id)sender { NSButton *button = (NSButton *)sender; id representedobject = [(NSTableCellView *)[button superview] objectValue]; }
或者,使用NSTableCellView的子类,使单元格视图成为按钮操作的目标,并调用[self objectValue]来获取对象.