How do you do it? I saw one video tutorial on it, but the screen was too small. Also, other than changing the view size, are there any other major changes I would have to make to my iphone apps to convert to iPad?
|
Assume you've the SDK with Xcode 3,
|
|||||||||||||||||
|
|
I was able to narrow it down to a few things, so here are the steps that worked for me: 1) Make a copy of the iPhone xib file and add it to your project 2) Right click the file (in xcode) and Open As > Source Code 3) The 2nd line should look like:
Replace with:
4) Search for "IBCocoaTouchFramework" and Replace all occurrences with "IBIPadFramework" 5) Save the file and Open As > Interface Builder - iOS The file might still look like a regular iPhone xib, but for me, once I changed the Status Bar to "Black" in the Attributes inspector the rest of the xib just kind of "snapped" into an iPad xib |
|||||||||||||||||||||
|
|
XCode4: In xcode 4 we can't do that for a single xib,but we can create respective ipad versions all at once. Before configuring your project to ipad,when it is configured only for iphone, right click on target and click on duplicate. Now select "duplicate and transition to ipad".A new target and new set of xibs are created.It should reduce some work. Hope it helps. |
|||
|
|
Xcode 4: The Create iPad Version Using Autosizing Masks feature has been removed from Xcode 4. Right now the easiest way is to use Xcode 3 for the conversion, since the nib (.xib) file format did not change. Xcode 3 & 4 can now be both installed on the same system by simply selecting a different folder (see installation instructions on the disk image). Otherwise you will need to copy/paste the UI elements from the iPhone version, and re-link them to your code. |
|||
|
Open up the XIB in XCode 4 using "view as source code." BeforeBack up the nib in question. OneSubstitute this goo
for this other goo
TwoThen, for each view in the nib using the integrated IB, delete it and then hit undo. ThreeThen shower in hot water to wipe off that disgusting feeling you might have. |
||||
|
|
You can open the XIB as textfile and change the UIView size: Right click on your XIB file in de navigator and select: "open as..." Open as source file. Find the UIView reference and change the Frame values:
|
|||||
|
|
What about letting the computer do computer's job? Here is a workflow based on the excellent answer from Jag, but automated with sed. First, let's setup some stuff. We will only need to do this once. File
and file
iPhone to iPad conversion:
iPad to iPhone conversion:
After having added this to your zsh config, converting a XIB is a simple as:
or
|
||||
|
In XCode 4.3.2, the easiest way for me to create iPad version of xib is duplicating that xib file and add The best reference I could find at the moment... https://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/LoadingResources/ImageSoundResources/ImageSoundResources.html |
|||||||
|
|
I will document what I did in Xcode 4.5:
|
||||
|
|
|
In addition to answer given by Jag also search for "320,460" and replace it with 768,1024 and your XIB will be resized to iPad dimensions. |
|||
|
|
|
For Xcode 4, You need not create separate target for each device. Instead, you can change the Devices in project summary to Universal which would be in iPhone already. This is answered in the link Updating iOS 5 App to Universal on Xcode 4.2. Thus, it will do transition for you. |
|||
|
|
|
Sounds like the best solution is to always develop as iphone first, then once you are complete done, add the ipad target, letting xcode do the update. I made the same mistake, selected universal to start, which creates the first few files, but then every other xib had to be hand recreated in the ipad folder. Big PAIN |
|||
|
|
In Some Cases.
|
|||
|
|
