I've searched the whole internet for a solution to this with no avail
I've read about overriding
Code:
windowTitleForDocumentDisplayName
But I tried it like so:
Code:
- (void)windowControllerDidLoadNib:(NSWindowController *) aController
{
[aController windowTitleForDocumentDisplayName:@"hey"];
[super windowControllerDidLoadNib:aController];
And "hey" doesn't appear
How can I set the title of an NSDocument window?
Thanks