我创建了一个自定义的 NSCell 子类,其中包含一个 NSImageCell、一些 NSTextFieldCells 和一个 NSPopUpButtonCell。
我正在使用以下方法初始化弹出单元格:
myPopUpCell = [[NSPopUpButtonCell alloc] init];
[myPopUpCell setBordered:NO];
[myPopUpCell setAutoenablesItems:NO];
[myPopUpCell addItemsWithTitles:[NSArray arrayWithObjects:@"Item1", @"Item2", @"Item3"]];
并把它画进去drawInteriorWithFrame:inView:
一切似乎都很好,除了在运行我的应用程序时单击弹出单元格时,单元格不会弹出。关于可能出错的任何建议?