How would I create device specific xibs? I made one for iPhone that is universal, but how can I use separate xib files?
|
|
From the Apple Resource Programming Guide:
In the "iOS Supports Device-Specific Resources" document, it says this:
So if you wanted separate .xib files, you would include the iPad xib called "MyView-ipad.xib" and the iPhone xib called "MyView-iphone.xib". Once you have these files included in your project, when you call this:
Depending on which device your application is running on, the correct xib file will be loaded. Hope this helps! |
||||
|
|
|
This is the default setting when creating a new project. For a concrete example, I would create a blank project for iPhone and iPad and dig in. |
|||
|
|
|
If you have already created your project as an iPhone project you will need to change it to a universal app |
|||
|
|