Is there a way to query why a nib file could not load? The result is simply YES or NO: http://developer.apple.com/library/mac/#documentation/cocoa/reference/ApplicationKit/Classes/NSBundle_AppKitAdditions/Reference/Reference.html.
Thanks,
Eric
Is there a way to query why a nib file could not load? The result is simply YES or NO: http://developer.apple.com/library/mac/#documentation/cocoa/reference/ApplicationKit/Classes/NSBundle_AppKitAdditions/Reference/Reference.html.
Thanks,
Eric
There can be several reason why a NIB could not be loaded (bad connections between instances and outlets, file not found, etc).
Running the application on the command-line (via the Terminal application) can show you some warning/error logs and help you diagnose the problem.
If your application is namd CocoaApp
and located under your Desktop
folder, then the commands to type into the Terminal application will be:
$> cd Desktop
$> ./CocoaApp.app/Contents/MacOS/CocoaApp