Sample code for Interface Builder to create a UI like Preview.app?
I've seen several programs that use a user interface that looks the same as Preview. I want to do the same, so I suppose there is probably some code example that shows how to do this. I really don't need the "customize toolbar" option, although that would be cool. I just want to know how to get Interface Builder to generate the correct Nibs for the default interface ...
a source to share
I think you probably just need to work through the examples located at / Developer / Examples / AppKit /
it has the essence of Preview.app - it's not just a window with scrollable content, plus a toolbar and drawer. However, in many ways it is the ability to remove AppKit capabilities (drag'n'drop, hierarchical menus, context menus, spotlight, textedit, userdefaults, rulers, even the kitchen sink, you get the idea ...)
play with the appKit examples, you'll be glad you did!
a source to share