Referencing a nib file in a subfolder of an Xcode compiled Cocoa app bundle. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T22:03:34Z http://stackoverflow.com/feeds/question/906360 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/906360/referencing-a-nib-file-in-a-subfolder-of-an-xcode-compiled-cocoa-app-bundle 1 Referencing a nib file in a subfolder of an Xcode compiled Cocoa app bundle. Mikoangelo 2009-05-25T11:20:27Z 2009-05-29T09:59:11Z <p>If I have a directory in my Xcode project (not a Group), which is added to the main target, and compile it, how do I instruct an NSViewController to <code>initWithNibName:bundle:</code> a nib file inside that directory?</p> <p>I've tried <code>[viewController initWithNibName:@"FolderName/NibName" bundle:nil]</code>, but that doesn't work. Neither does without the folder name, nor setting the bundle parameter to <code>[NSBundle mainBundle]</code>. I've even tried setting the bundle to <code>[NSBundle bundleWithPath:pathToFolderName]</code> to no avail.</p> http://stackoverflow.com/questions/906360/referencing-a-nib-file-in-a-subfolder-of-an-xcode-compiled-cocoa-app-bundle/925262#925262 2 Answer by Jon Hess for Referencing a nib file in a subfolder of an Xcode compiled Cocoa app bundle. Jon Hess 2009-05-29T09:59:11Z 2009-05-29T09:59:11Z <p>You're best of not using folders like this. Many Cocoa conveniences like -[NSImage imageNamed:], or the view controller init method expect to find a file in the Resources folder of the bundle.</p> <p>If you'd really like to keep a folder of NIB files anyway, you can, but you won't be able to use the convenience methods. You can override -[NSViewController loadView] method of your view controller to invoke -[NSBundle loadNibFile:externalNameTable:withZone:]. You would pass the path to the NIB file, a name table with NSNibOwner set to the view controller, and a NULL zone. You'll also need to take care of releasing the top level objects from the NIB file. </p> <p>Things will go a lot smoother if you abandon the sub directories in Resources.</p>