The issue I am having with this naming convention ~iPad.xib is that everything loads properly in the iPad simulator. Although when I build the project on the device only the iPhone Views load. This has been driving me crazy. Please if anyone knows why this is doing this it would be much appreciated. Thanks

link|improve this question

0% accept rate
1  
Did you try ~ipad (lowercase)? The simulator is lenient when it comes to capitalization. – sudo rm -rf Apr 19 '11 at 15:35
Hi thanks for the response yes this solved the issue for me. thanks – xitzxmythicx May 31 '11 at 19:00
I'll post it as an answer then so others can see it's solved. Just mark it as answer. – sudo rm -rf May 31 '11 at 22:46
feedback

2 Answers

Make sure you use ~ipad (lowercase) instead of iPad. The simulator (and the underlying Mac OS X) is case-insensitive when it comes to capitalization, while the device is case-sensitive.

link|improve this answer
2  
Are you sure that this behaviour is because of the simulator as opposed to the underlying filesystem type? A default Mac OS X installation formats the file system as case-insensitive, case-preserving. – Bavarious May 31 '11 at 23:29
@Bavarious: I hadn't really thought about that. That could be a possibility. I'll edit the question. – sudo rm -rf May 31 '11 at 23:48
feedback

Call it mynibname~ipad.xib - I wrote out all the steps needed to use this strategy in this post:

Is this a correct way of creating a universal iOS app? Xcode 4 - Seems to work?

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.