Reputation: 11
I am starting out with os x and cocoa programming and I'm trying to figure out how the sidebar on the sparrow mail app was put together.
What controls were used? Is the leftmost area with the grey background an NSTableView
or something else?
Upvotes: 1
Views: 339
Reputation: 119242
This may not help in your specific case but you can open up an application bundle (control-click and show package contents) to see the files that make up the app. In there will be a resources folder, and in there will be, usually, some interface builder files that you can open in Xcode (be careful!) and look at the layout and classes that were used.
If the interface is defined in code, this won't help you.
Upvotes: 2