I am writing a document based application, where there is a project file that the user opens, and a number of associated source files, all of which I wish to edit in the same window. How can I do this within the NSDocument architecture? specifically how can create multiple NSDocuments as children of the NSDocument associated to the project file, and then display these all within one window controller.
This has been asked before (e.g. Multiple Documents in a Single Window in Cocoa), but the answers suggest working outside of the document architecture, something no longer possible with the recent App Store rule change that requires all applications to use the sandbox, which requires all IO via NSDocument.
NSDocumentsandboxed and other I/O not? You're going to have to work outside the document architecture as it doesn't support what you want (i.e. it supports one document with one-or-many windows). – trojanfoe Feb 2 at 7:38NSDocumentis not needed to add something to the whitelist, but it is the only way (that I know of) to persist this entry in the whitelist over to the next time the app is launched (apps are expected to re-open documents). I'm not sure if there is some other way to do this, seems like there should be. – Abhi Beckert Feb 5 at 18:48