tags:

views:

106

answers:

1

Hey Guys,

I gave an app in the app store got ipad. I also made a app for the iPhone now. What you guys suggest should I create a new app for the iPhone or is there way to add my iPhone binary to my current ipad app?

Thanks for your help.

+2  A: 

There is no way to include the iPad and iPhone binary together. If you want to put them together, you'll need to create a universal application. You will have checks at run time that will determine whether or not your app is running on an iPad or iPhone, this will determine which set of ViewControllers your app will display.

There is a lot of information out there on creating universal apps.

christo16