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:
- Via a new NSSavePanel to the newly instantiated modal window and customizing the entire save flow here ?
- Using the main NSDocument class that receives save message from the button in the above window ? If so, how to save the document ?
- Any other scenario ?