显示 NSArrays 的 NSDictionary 最好的是什么?
我有一个 NSDictionary,每个键都引用一个 NSArray 对象,我想在 mac OSX 10.5 上的 Cocoa APP 上显示内容,对此最好的解决方案是什么?
也许是 NSTreecontroller?
I have a NSDictionary
that each key refers to an NSArray
object, I want to show the contents on a Cocoa APP on mac OSX 10.5, What is the best solution to this?
Maybe NSTreecontroller
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些类型的树结构可以通过
NSOutlineView
或NSBrowser
。另请参阅大纲视图编程指南,它介绍了该主题(至少对于大纲视图)。
These kinds of tree structures are well displayed by components like
NSOutlineView
orNSBrowser
.Please also have a look to Outline view programming guide by Apple, which introduces the subject (at least for outline views).