我使用NSTreeController
withNSOutlineController
来显示 1parent-1child 层次结构中的内容。我的结构是这样的:
- 父母
- 孩子
- 父母
- 孩子
现在,当用户按下刷新按钮时,我想删除所有节点并重新填充它。
[[treeController arrangedObjects] removeAllItems];
[[treeController arrangedObjects] removeAllObjects];
但一切似乎都在起作用。
我想 binging NSTreeController
withNSArrayController
应该会有所帮助,但我真的不知道绑定的步骤 - NSArrayController
- NSTreeController
- NSOutlineController
。