NSDictionaryController和图像

时间:2011-09-22 07:20:52

标签: cocoa xcode4 nstableview cocoa-bindings nsimagecell

我指的是this example code。我试图在显示lastName的第一列显示图像,但不幸的是我不能。

1 个答案:

答案 0 :(得分:0)

我认为你可以用两种方式做到 -

  1. data-source - peopleList数组包含没有任何NSImage对象的字典。您可以尝试将NSImage对象添加到字典中,然后通过绑定显示它。

  2. 您可以在NSTableViewDelegate中使用 - tableView:willDisplayCell:forTableColumn:row:以及lastName tablecolumn标识符,将相应的图像设置为单元格。

  3. 此外,由于您是初学者,我想向您推荐一个更简单的示例:http://dl.dropbox.com/u/9999259/SimpleTable.zip

    希望这有帮助!