设置NSTableViewCell编辑

时间:2012-07-09 09:02:36

标签: macos cocoa nstableview nstableviewcell

NSTableViewCell内容一个NSImageCell和一个NSTextFieldCell,当向NSTableView添加一个新单元时,方法

[tableView editColumn:0 row:100 withEvent:nil select:YES];

将NSImageCell作为编辑。 我希望它专注于NSTextFieldCell,该怎么做?

2 个答案:

答案 0 :(得分:0)

使用此

[tableView editColumn:1 row:100 withEvent:nil select:YES];

我认为textfield在2栏中。

答案 1 :(得分:0)

只需将NSImageCell设置为NO;

[imageCell setEnabled:NO];
[textFieldCell setEnabled:YES];