I have very simple iPhone app, which uses just UIButtons, UIlabels, UITableView. without any custom controllers and graphics. How can I convert app to universal with that UI?

link|improve this question

76% accept rate
what do you mean by Universal? iPhone+iPad? – Brian Driscoll May 2 '11 at 19:12
3  
Yes, of course Universal = iPhone and iPad application – Tunyk Pavel May 2 '11 at 19:21
Just update the target for iPad in the file menu, I believe. You will have to relayout the user interface and really, iPad has a different design paradigm, so you should familiarize yourself with SplitViewController and PopoverController classes. – Jamie May 2 '11 at 19:48
feedback

5 Answers

up vote 7 down vote accepted

First update the application target device to Universal.

  1. Update the application target device to Universal.
  2. Check the Info.plist for NSMainNibFile & NSMainNibFile~ipad keys.
  3. For all other views, have two different NIB. For example FirstView.xib & FirstView~ipad.xib. iOS runtime will load the proper view based on the device.

Here is a screenshot of a sample project: Info.plist for iOS Universal app

link|improve this answer
feedback

I needed to convert my iPhone App to iPad yesterday and found the easiest way to do it as long as your app is pretty simple. Mine was literally just some tableViews that were set to auto-size. In Targets / Devices just change it from 'iPhone' to 'Universal' and then build your application. This worked very nicely for me. All tableViews were perfectly formatted for the iPad and that is really all I needed.

Note that if you had any other XIB files that were not just tableViews, such as a window with text fields, all you have to do is set them each to resize properly so they stretch and stay at the top and your simple app should be pretty much all set for the iPad.

Obviously you'll need to test it and tweak anything needed but for the most part the above worked magically for me and took literally one second to convert my iPhone app to an iPad app!

link|improve this answer
feedback

This Question will get you everything you need:

cocos2d:Convert iPhone App to Universal App

link|improve this answer
feedback

So I can use a different set of nib files for iPad vs iPhone and totally change the look of the app, wire it to the same IBActions (would I need new IBOutlets, or could I re-use the same ones?) and also, possibly add more behavior/functionality because of the increased screen space?

link|improve this answer
feedback

If it's a simple app, rewrite it as an HTML5 app and then using something like PhoneGap to compile to different platforms.

link|improve this answer
I'm trying to find xcode or objective-c solution. Thank you for answer. – Tunyk Pavel May 2 '11 at 19:22
I'm sorry...I completely misread your question. I was thinking 'cross platform'. – DA. May 2 '11 at 21:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.