Tagged Questions
3
votes
1answer
64 views
Is there a better way to access the Document from its subviews?
I have some classes located on my Document such as NSNotificationCenter and NSUndoManager that I need access to from my subviews.
Right now I can access them by doing something like this:
...
2
votes
2answers
1k views
Multiple Documents in a Single Window in Cocoa
I want to write an application which may have multiple documents in a single window via a tabbed interface. Should I avoid the NSDocument architecture (the Cocoa Document-based Application template)? ...
0
votes
1answer
23 views
NSDocument has ivar to NSArrayController
Is this ok, to load NSWindowController from NSDocument, and keep reference to NSArrayController?
I need this instance of array controller to save data.
- (void)makeWindowControllers
{
...
0
votes
1answer
438 views
Where do you put cleanup code for NSDocument sub-classes?
I have a document-based application and I have sub-classed NSDocument and provided the required methods, but my document needs some extensive clean-up (needs to run external tasks etc). Where is the ...