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]];
|
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?
| |||
|
feedback
|
|
Nope, that's the way to get it. The If you're customizing the window appearance or behavior, it would actually be better to subclass
| |||
|
feedback
|