I'm making a universal app based on the Utility App template. I've selected a universal app and the MainView.xib and MainView~iPad.xib work properly on both device types.

On the iPad2, when I switch to the FlipsideView, it loads FlipsideView.xib even though there is a perfectly good FlipsideView~iPad.xib file in the project. The default xib is normal (iPhone) sized and displaying in the lower left hand corner of the iPad.

I did have to create the FlipsideView~iPad xib manually. I believe I have the xib properly wired in IB as it shows identical to the FlipsideView.xib connections.

Over the last couple weeks, I've read quite a few posts with similar problems and this Stack Overflow thread answers most clearly and contains links to Apple documentation. So I know it works for others and is documented.

The code for this section is identical to the showInfo() method in the stock Utility App template.

(Yes I realize I can manually load the ~iPad version checking UI_USER_INTERFACE_IDIOM(). I'm trying to figure out what I'm doing wrong in getting the ~iPad modifier to work.)

Any ideas what I'm missing?

Thanks a ton for your help!

link|improve this question
feedback

3 Answers

up vote 7 down vote accepted

in the end i found the solution. it is really very very simple. The xib must be named ~ipad instead of ~iPad, and ~iphone instead of ~iPhone. The bad thing is the if you name them ~iPad, everything works in the simulator but it does not work on the real device.

link|improve this answer
Thanks for the info! I am surprised it took me like an hour to find this! - using suffix ~iphone and ~ipad for automatic xib file selection for different device. – Hlung Feb 1 at 18:27
Very useful, thanks. I had to Product -> Clean in xCode for this to work after renaming though. – glenstorey Mar 15 at 8:31
Thank you! This solved it for me. – jj0b May 4 at 0:13
The iOS file system is case-sensitive, but the Mac's file system is case-INsensitive. So the simulator's disk can't tell the difference, but the device's disk can. – Walt Sellers May 18 at 20:26
feedback

I don't believe the ~iPad idiom automatically loads that xib for the iPad. I think it's just there to help the developer. So therefore you would somehow have to specify to use that (connections on MainView~iPad or using UI_USER_INTERFACE_IDIOM() like you stated). Don't think there is an easier/automatic way, sorry.

link|improve this answer
developer.apple.com/library/ios/documentation/Cocoa/Conceptual/… 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.” – blauehavik Jun 12 '11 at 17:01
iOS Supports Device-Specific Resources Now I'm not saying you are wrong - just that the documentation doesn't agree. And it does work on the Apple prepared views. – blauehavik Jun 12 '11 at 17:03
Oh. I hadn't read that. I haven't gotten anything like this to work, but try using the ~iphone for iPhone files instead. So basically making the iPad version the "default", just as Kenny stated above. That might help you. – Dylan Gattey Jun 12 '11 at 21:25
feedback

It can be done automatically based on the name, no worries. The only problem is you'll need to switch your naming convention. MainView.xib will be your iPad xib and MainView~iphone.xib will be your iPhone xib. Then it should work perfectly for you and you don't have to do anything but alloc/init.

You can check out my other answer on this topic here: iOS: Using device modifiers for loading xib files?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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