I am building a simple document-based application in cocoa and I'm having problems to link common data between my document instances.
I'd like to have some sort of AppController and have all my documents to access the same instance of this class.
Instancing the object in document.xib will create different instances for each document. And Instancing the object in MainMenu makes the object inaccessible.
How can I achieve that?