I have an application that has a layout similar to the iTunes and Finder. I use Core Data and NSTreeController to set the data in the hierarchical view on the left side. I need to modify the application so that the elements in the left side view are separated in two groups and each group should be part of a new node which needs to be all capital grey letter header.
So basically I need to add another layer on top of what I already have, which will separate the nodes. How should I do this? Is it necessary to change the data schema and add another entity? I am trying to avoid that so I am wondering if there is an easy way to do this, will it work if I just use SourceList and the isGroupItem method?