Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a iPhone application which has a storyboard. Now i want to provide a iPad application too. So I asked me whether there is a function which helps me to convert my iPhone storyboard to an iPad storyboard.

Is there a similar function or is there only the manual way?

David

share|improve this question
nobody ? Really i need your help ;) – David Ehlen Dec 11 '11 at 18:12
4  
0% accept rate? click the check mark to pick a good answer to your questions :) – Marty Jun 21 '12 at 21:27
oh thanks i didnt know i had to mark them, i marked one answer now as the correct one. I also did this in my old threads, thanks. – David Ehlen Jul 9 '12 at 22:21

5 Answers

up vote 130 down vote accepted

I found out a kind of solution:

  1. Duplicate your iPhone-Storyboard and rename it MainStoryboard_iPad.storyboard

  2. Open this file any text editor.

  3. Search for targetRuntime="iOS.CocoaTouch"and change it to targetRuntime="iOS.CocoaTouch.iPad"

  4. Now save everything and reopen Xcode -> the iPad-Storyboard contains the same as the iPhone-file but everyting could be disarranged

This saved me hours - hopefully this will help you

share|improve this answer
8  
+1 If I could, I would give you +100 from my own reputation. Brilliant advice! The only thing I couldn't do was to open the storyboard with Dashcode, so I used TextWrangler (but I think any text editor would do). Thanks! – Piotr Justyna Jan 3 '12 at 17:19
13  
Good advice, thanks. While you're at it, you may also probably want to change all the width="320" to width="768", height="480" to height="1024", etc... directly from here. As it's much simpler than doing it element by element in IB. – Ben G Feb 6 '12 at 22:39
29  
don’t use Dashcode, nor textWrangler, inside xCode simply: right click on the storyboard -> “open as” -> “Source Code” when done, do the same thing except use “Interface Builder - IOS StoryBoard" – hokkuk Mar 14 '12 at 16:23
4  
@PiotrJustyna you can do that. Press start a bounty under the question, select desired amount and Reward existing answer... – Filip Radelic Jun 28 '12 at 1:10
12  
to get the iPad format also change the code in the MainStoryboard_iPad.storyboard from: <simulatedScreenMetrics key="destination" type="retina4"/> to <simulatedScreenMetrics key="destination"/> – Marcus Schwab Nov 6 '12 at 6:32
show 7 more comments

If you had created a universal project, by default empty iPad storyboard would have been created, you just have to select iPhone storyboard select all (Command+A), copy (Command+C) and paste it on iPad storyboard. Make sure to move the entry point from the empty storyboard to newly copied storyboard before compiling.

share|improve this answer

This is going the other way, but I was able to do a select all & copy in my iPad storyboard (~35 scenes) and paste it into my iPhone storyboard. The scene sizes were automatically adjusted. I only saw two problems, I had to replace UISplitViewController (since it's only iPad), and the default background became transparent instead of gray (still working on fixing that properly, without manually setting the background for everything).

EDIT: It seems the default background for UITableView in the Attributes inspector is rather strange. I had to manually set the background to "Group Table View Background Color" for grouped table views, and "White Color" for non-grouped table views. It then was displayed as "Default" (I assume since it then matched a hardcoded value). -- Actually, even easier, changing from "Grouped" to "Static" and back seems to reset the default color.

share|improve this answer

That didn't quite work for me. I did something a little bit different.

  1. Create a new story board file for the iPad version
  2. Open both the new file and the file i want to copy in textwrangler (text editor)
  3. Copied the xml text from old file to the new file between these xml tags
  4. First Tag <scenes> <!--Contents View Controller-->
  5. Paste Here
  6. End Tags </class> </classes>

That worked for me. I got a new layoutout with all my outlets connected, which alone saved me a few hours.

share|improve this answer
+1 the others didn't work for me and this makes everything work as expected – Shereef Jan 14 at 11:01

Go to your Target Summary and change devices to universal, then go down and set the ipad version to any storyboard you like including a copied and renamed one if you like.

share|improve this answer

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.