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?
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?
Copyright © 2021 Jogjafile Inc.
These kinds of tree structures are well displayed by components like
NSOutlineVieworNSBrowser.Please also have a look to Outline view programming guide by Apple, which introduces the subject (at least for outline views).