I want to set some properties of the window of my NSPersistentDocument object. How do I get access to it?

Is there a better way than like this?

    [[[[self windowControllers] objectAtIndex:0] window] setBackgroundColor:[NSColor blueColor]];
link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Nope, that's the way to get it. The NSWindowController is responsible for managing the window, and that's why it owns the window.

If you're customizing the window appearance or behavior, it would actually be better to subclass NSWindowController and put the code the customizes the window in that class, rather than your NSDocument/NSPersistentDocument subclass.

NSDocument (and friends) are meant to manage the data, and NSWindowController is meant to manage the UI. In all but the simplest applications, you should be subclassing NSWindowController.

link|improve this answer
OK thanks ;-) I'l do so! – septi Oct 7 '11 at 18:28
feedback

I'm using self.windowForSheet which seems to be working.

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.