I have a document-based Cocoa application that has to start up a sub-process before running. It would be best if that process could finish starting up before I display any document windows. I get a notification when the process has fully started.

How can I delay the creation of the untitled NSDocument subclass object until the notification arrives? I have a splash screen and a timeout, so I can "busy wait" and still get user-generated events. I can override any class I need to.

link|improve this question
1  
Don't use splash screens; they suck. – Mike Abdullah Aug 18 '10 at 22:09
Have to agree with that one. :-) – Joshua Nozzi Aug 19 '10 at 13:49
feedback

1 Answer

up vote 1 down vote accepted

See the -applicationShouldOpenUntitledFile: delegate method. You can say "NO" and create the untitled document on your own when you're ready with the following code:

[[NSDocumentController sharedDocumentController] newDocument:self];
link|improve this answer
That worked perfectly. I wait for the notification to come in, and I call the above code. Thank you. – Mel Aug 19 '10 at 1:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.