During my app workflow there is a moment when a new modal NSWindow is initialized from a nib. This window should have a save document button. Which is the recommended approach:

  1. Via a new NSSavePanel to the newly instantiated modal window and customizing the entire save flow here ?
  2. Using the main NSDocument class that receives save message from the button in the above window ? If so, how to save the document ?
  3. Any other scenario ?
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

For those interested, I have solved this creating a singleton class with accesors that allows using "global"-like variables, thus calling methods and sending messages from the newly instantiated NSWindowController is now a breeze. Todo: look into possible using KVC for this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.