Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

You can use a device modifier (i.e., ~ipad) to provide a device-specific key in Info.plist, and to specify a device-specific launch image (Default.png for iPhone, and Default~ipad.png for iPad, for example). Those two things are specifically mentioned in Apple Docs, but they don't say that this will work for any other kinds of files.

I've discovered (quite by accident) that this works for loading .xib files via initWithNibName:bundle:. So for example, I can have MyView.xib and MyView~ipad.xib, and this code:

MyViewController *viewController = [[MyViewController alloc] 
                                     initWithNibName:@"MyView" bundle:nil];

... will totally load MyView~ipad.xib on an iPad, and MyView.xib on other devices.

So, 1) Is this documented somewhere? I sure couldn't find it any any Apple docs. It's sure handier than checking UI_USER_INTERFACE_IDIOM() and hardcoding two different nib names everywhere, but I kinda don't trust it if it isn't documented.

And, 2) Does anyone know what version of iOS this started working in? I've only tried it in 4.2, and it works there. Device modifiers in general (even for the documented things listed above) are 4.0 minimum.

share|improve this question
1  
Good spot. Pretty sure this is 4.0 onwards, certainly for universal apps; although perhaps this worked on 3.2 on iPad? Looking back at bundle programming guide, it does always use images as examples for resource loading, but reading between the lines again, it might be that all resources loaded though the app bundle drop-out through the same mechanism? – petert Mar 4 '11 at 8:54

5 Answers

up vote 16 down vote accepted

Actually, it is explicitly defined in the docs, but as a footnote.

http://developer.apple.com/library/ios/documentation/Cocoa/Conceptual/LoadingResources/CocoaNibs/CocoaNibs.html#//apple_ref/doc/uid/10000051i-CH4-SW25

In the note at the bottom of "Loading NIB files using NSBundle":

Note: If you are developing a Universal application for iOS, you can use the device-specific naming conventions to load the correct nib file for the underlying device automatically. For more information about how to name your nib files, see “iOS Supports Device-Specific Resources.”

Which links to http://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/LoadingResources/Introduction/Introduction.html%23//apple_ref/doc/uid/10000051i-CH1-SW2

However, yes, this is a 4.0+ only feature.

share|improve this answer

I had this same problem. The answer didn't make sense at first, but the good news is that it's easy to do! :)

Just name your iPad xibs without any modifier and your iPhone xibs with ~iphone modifier and it'll select them correctly.

So, with MyViewController, you'll have MyViewController.xib for the iPad and MyViewController~iphone.xib for the iPhone. Then you can just init your view controller with simple alloc/init.

[[MyViewController alloc] init] and it'll grab the right xib.

So, when I create a new view controller in XCode, I always choose the box to format it for ipad, because the xib it will create will be named MyViewController.xib and you want that one to be the iPad sized xib. Then I create a second xib, formatted for iPhone and name it with the ~iphone modifier.

The documentation is a little contradictory at times, but this page talks about how resources with an identifier will default to iPad.

http://developer.apple.com/library/ios/ipad/#documentation/Cocoa/Conceptual/LoadingResources/ImageSoundResources/ImageSoundResources.html

Check the section about using high res images. I know we're talking xibs and not images, but it does work. My last 6 apps have all used this idiom.

share|improve this answer
1  
That's all good, but my point is, nowhere in any official documentation does it mention that resource files in general use the device-modifier idiom. I was hoping to see official documentation regarding the behavior, and/or some official documentation on minimum iOS versions. – zpasternack Mar 6 '11 at 4:40
I feel you, I was never able to find anything in the documentation that explicitly said this for xibs, but when I found the above linked documentation about Images I decided to give it a try hoping that it would also apply to xibs... and viola, it did... and dev has been a breeze ever since. I've been using it since 4.0. Sorry, best I can give you! – Kenny Wyland Mar 6 '11 at 17:02

I hate to be that guy and answer my own question, but I think the answer is:

1) Nope, not explicitly documented in any Apple documentation, and
2) 4.0 and higher (this based on my own testing)

All you really save is a couple lines of code checking for UI_USER_INTERACE_IDIOM(). Still, I'll take it. Less code is less code.

share|improve this answer

The appropriate technique to use in iOS 3.2 and later is the UI_USER_INTERFACE_IDIOM() function. I typically use a ternary operator to init the UIViewController with the appropriate XIB.

UIViewController* controller = [[UIViewController alloc] 
    initWithNibName:UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad ? 
    @"YourViewController-iPad" : @"YourViewController" andBundle:nil];
share|improve this answer
1  
iOS has built in naming scheme so you don't need to include this ternary conditional stuff. You can use a simple alloc/init if you name the xibs correctly. – Kenny Wyland Mar 4 '11 at 19:08
1  
Right, using ternary operators is a good way to go, but if just naming xibs properly does the same job, I'd rather do that. I guess I'm saying, doesn't really answer my question. – zpasternack Mar 6 '11 at 3:57

Kenny Wyland, your solution is not perfect: init on view controllers should not be even used, it is not even documented in apple documentation. The current behavior (picking the nib name equal to the controller name if exist) could even be no more supported in the next releases without any advise.

fortunately i found the solution to the problem, which is, fortunately again, very easy. you can find it here: iOs device-specific resources not working

share|improve this answer
where do you get that init on view controllers should never be used? You shouldn't call it on UIViewController, but that doesn't make you can't implement your own -(id)init. I do in every view controller so the nib name and bundle crap is nowhere but the .m file for that controller. The name of the nib should be nowhere else. – Mark Lilback Jan 23 '12 at 2:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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