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?
feedback
|
|
First update the application target device to Universal.
Here is a screenshot of a sample project:
| |||
|
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! | |||
|
feedback
|
|
This Question will get you everything you need: | |||
|
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? | |||
|
feedback
|
|
If it's a simple app, rewrite it as an HTML5 app and then using something like PhoneGap to compile to different platforms. | |||||
feedback
|
