iPhone: one nib, different assets. Bundles? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T13:50:47Z http://stackoverflow.com/feeds/question/538859 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/538859/iphone-one-nib-different-assets-bundles 6 iPhone: one nib, different assets. Bundles? stephan.com 2009-02-11T21:21:42Z 2009-11-21T16:35:57Z <p>I have an iPhone application that comes in differently skinned flavors, with different art assets and sounds, but all the same code.</p> <p>I've got things set up with multiple targets, but the problem I'm having is I have to have a different set of UIBuilder nib files, one per view per target, set up to point to the correct art for that target.</p> <p>This is a little frustrating, because if I make a change to one nib file, I have to manually make the same changes, same connections, etc in all the other nib files. I also put all the assets in with different names for the different skins as well, so they don't collide in the project. So, if I have targets A and B, I have <code>a_main_menu.png</code>, <code>b_main_menu.png</code>... <code>a_FooViewController.xib</code>, <code>b_FooViewController.xib</code>... etc.</p> <p>Is there a way to make a nib file that points to assets that have the same name, but are in... umm, different bundles? is that what a bundle is for? I can imagine fixing something like this in my code (probably search and replace A for B in the nib before loading it could even be good enough), though I haven't tried it, that's ugly.</p> <p>This was a manageable strategy for my first set of applications (though far from optimal), but as my stuff gets more complex, it's getting REALLY hard to keep my builder files in sync, and it's just not a very DRY way to work. Is there a better way aside from ditching uibuilder and creating my views in code?</p> <p>It would be nice if this worked at the xcode/builder level, so builder would respect my current target and show the art for that target while I'm working... but I can maybe live without that, like if I could select the current set of art at run time, and I'd only be able to work with one set in builder. I could also do it with one set of nibs by having a single target and manually replacing all the art before building, but that's not very nice either.</p> <p>Best of all would be if I could mix the two strategies - like if I have one target that has one view out of several that just HAS to be laid out differently... but that's optional.</p> <p>Am I asking the right question?</p> <p>Thanks!</p> http://stackoverflow.com/questions/538859/iphone-one-nib-different-assets-bundles/539210#539210 1 Answer by Squeegy for iPhone: one nib, different assets. Bundles? Squeegy 2009-02-11T22:44:55Z 2009-02-11T22:44:55Z <p>Assuming that each app only needed one skin at a time, and that you are creating multiple apps with different themes, I would create a branch in my source control and then replace the necesary assets. You keep a master branch with all default assets and then you merge code changes from the master into your skinned branches keeping everything in sync.</p> <p>Git makes this super easy.</p> http://stackoverflow.com/questions/538859/iphone-one-nib-different-assets-bundles/1775744#1775744 0 Answer by Jessedc for iPhone: one nib, different assets. Bundles? Jessedc 2009-11-21T15:17:12Z 2009-11-21T15:17:12Z <p>I think the best option is to use something like git.</p> <p>If you used git, you can have a main branch that holds the master source code and logic, and have sub branches that have different sets of data/images for each particular flavour of your application. In this solution, XCode wouldn't even know what's going on.</p> http://stackoverflow.com/questions/538859/iphone-one-nib-different-assets-bundles/1775778#1775778 0 Answer by CiNN for iPhone: one nib, different assets. Bundles? CiNN 2009-11-21T15:30:12Z 2009-11-21T15:30:12Z <p>I think this is what viewDidLoad is for, to customize more, in here you can change the images path.</p> http://stackoverflow.com/questions/538859/iphone-one-nib-different-assets-bundles/1775958#1775958 0 Answer by Ramin for iPhone: one nib, different assets. Bundles? Ramin 2009-11-21T16:35:57Z 2009-11-21T16:35:57Z <p>One way to do this is to move all your artwork into a separate bundle and dynamically load it at runtime (sort of like a "media plug-in").</p> <ul> <li><p>Create a separate project and choose "Mac OS X / Framework &amp; Library / Bundle." Call it, say, <code>media.bundle</code>.</p></li> <li><p>Move all your artwork into this project.</p></li> <li><p>To make life easy, add an extra "Run Script" step to the target copying the built output from the build directory over to a subfolder under your main project. To make it even easier, add the media bundle as a dependent project in your main project so it gets rebuilt automatically.</p></li> </ul> <p>In your main project you'll need these two methods. You can make them static methods under a <code>BundleUtils</code> class:</p> <pre><code>+ (NSString *) bundleDirectoryFor:(NSString *) bundleName { NSString* basePath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.bundle", bundleName]]; return [[NSBundle bundleWithPath:basePath] resourcePath]; } + (NSString *) resourceInBundle:(NSString *)bundleName fileName:(NSString *)fileName { NSString *bundlePath = [BundleUtils bundleDirectoryFor:bundleName]; return [bundlePath stringByAppendingPathComponent:fileName]; } </code></pre> <p>Now every time you want to access artwork in your bundle, you can get the path to the right file with:</p> <pre><code>NSString* imageFile = [BundleUtils resourceInBundle:@"media.bundle" fileName:@"image.jpg"]; UIImage* image = [UIImage imageNamed:imageFile]; </code></pre> <p>Obviously, the name "media.bundle" can be substituted at runtime for a different one so you can switch to other bundles based on your app's needs. This is also a handy way to support downloadable content (say, as for-pay add-ons).</p> <p>One caveat: this assumes you need to load images dynamically at runtime via code. But you also have static NIB files that have media embedded in them. You'll have to figure out a way to make the static NIB file use the dynamic methods to resolve media file names. One way is to use <a href="http://www.cocoadev.com/index.pl?MethodSwizzling" rel="nofollow">MethodSwizzling</a> and watch for filepaths with a prefix of type, say, "media:image.png" and redirect those to use the BundleUtil methods.</p> <p>Another way is to do your layout with IB then convert it to Obj-C code using <a href="http://kosmaczewski.net/2009/03/17/nib2objc/" rel="nofollow">nib2objc</a> and then substitute the plugin bundle mechanism.</p> <p>Hope this helps.</p>