Por que o applicationShouldOpenUntitledFile está sendo chamado?

Adicionei umapplicationShouldOpenUntitledFile ao delegado do meu aplicativo, retornandoNO como a documentação da Apple especifica. No entanto, ainda estou recebendo um novo documento na inicialização. O que há de errado

@implementation AppDelegate

@synthesize window;

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
    NSLog( @"This is being called" );
}

- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender
{
    NSLog( @"This never is" );
    return NO;  
}

@end

questionAnswers(5)

yourAnswerToTheQuestion