I just finished my iPhone app and I want to make it Universal. I've read a few posts already but they're a bit old (2010 or so).

What I got:

  • Simple iPhone app, recently created (iOS 5 - Storyboard), with three screens.
  • My app represents a table with three cards that you can flip touching them. The user can input (on the second screen) text to be displayed on the cards.
  • When I created the project I checked "Universal" so I have two Storyboards. After that nothing else I did had to do with iPad (except for a line on my "contact support" email option where I used UIModalPresentationPageSheet).

What I'd like to accomplish:

  • Same app on the iPad: my application is so straightforward I don't have any use for split views or details. I just want the same objects and layout but with bigger and better graphics (table, cards, etc).

I like it because it'd make a great introduction-level migration.

I have no idea where to start. When I run the iPad simulator a white screen comes up and that's it.

Can you please point me in the right direction?

Thanks in advanced,

link|improve this question

78% accept rate
Erm... editing the iPad storyboard would be a good place to start. – esqew Jan 27 at 16:04
So for your iPad version you need to re-do the whole storyboard and re-use the code? Add again buttons, labels and every UI element and connect them with your current methods? – Juan González Jan 28 at 10:16
Yup, the iPhone and iPad platforms are very, very simulator. Aside from a few exceptions, you should be able to do this no problem. – esqew Jan 28 at 20:15
Hi @esqew. I'm almost there. I duplicated every UI element on the new storyboard. I've connected almost everything. The buttons trigger the segue correctly and all, but the buttons that go with the properties don't allow me to connect them. When I try to do it Xcode wants to insert a new outlet. Any idea? Maybe these ones need to be duplicated? – Juan González Jan 31 at 11:56
1  
In my case the only thing needed to be able to connect the UIButtons to the new Storyboard was to add the "IBOutlet" declaration. – Juan González Feb 1 at 8:42
show 1 more comment
feedback

2 Answers

up vote 2 down vote accepted

Well this is done.

As with almost everything, this is pretty easy once you know what to do.

I'd say that for those cases like mine, where the UI doesn't change in more than sizes or (x,y) coordinates the process could be summarized like this:

  1. Replicate every UI element on the iPad Storyboard (copy and paste will do) and adjust position and size as you see fit
  2. Re-wire everything again. Every button, segue (you'll have to add the segue name again too), etc.
  3. Verify within your code every place where your UI is affected (e.g. x,y coordinates), identify whether the app is running on an iPhone or iPad, and divide your code accordingly
  4. If you have any localization on the application you'll have to update the new UI elements on the iPad Storyboard
  5. Select the target for testing on the simulator and try it out

In order to identify in which device the app is running you can use the following:

if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
    //I'm running on the iPad
} else {
    //I'm running on the iPhone
}

And that's it. Again, in a simple case like mine the reuse of code is absolute (100%), the new code you'll have to add is minimum (basically IF statements where needed), and the UI elements duplication is as easy as copy and paste.

I hope this is useful to someone else and if you have recommendations to improve this they're more than welcomed.

link|improve this answer
feedback

If you just want to reuse your iphone storyboard, just go to your project settings. In TARGETS tab Info, there are rows 'Main storyboard file base name' and 'Main storyboard file base name (iPad)'. Just edit the iPad one to have the same value as the other. In my case I has to edit it as 'Main storyboard file base name (iPad)' with value 'MainStoryboard_iPhone'.

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.