Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

cocos2d:Convert iPhone App to Universal App

I have developed an App app in cocos2d 99.4 using cocos2d box2d project template.It works well in iPhone 4,iPod.....but i need it to convert to universal...i mean iPad version also ......i already upgraded it to iPad version....so that it runs in iPad...but in small size like iPhone...

can any one help??

Thanks

like image 553
Rony Avatar asked Sep 18 '10 09:09

Rony


1 Answers

To convert your project to a universal app, see "Creating a Universal Application" in the iPad Programming Guide:

Configuring Your Xcode Project

The first step to creating a universal application is to configure your Xcode project. If you are creating a new project, you can create a universal application using the Window-based application template. If you are updating an existing project, you can use Xcode’s Upgrade Current Target for iPad command to update your project:

  1. Open your Xcode project.
  2. In the Targets section, select the target you want to update to a universal application.
  3. Select Project > Upgrade Current Target for iPad and follow the prompts to create one universal application.

Xcode updates your project by modifying several build settings to support both iPhone and iPad.

Important: You should always use the Upgrade Current Target for iPad command to migrate existing projects. Do not try to migrate files manually.

like image 171
Shaggy Frog Avatar answered Sep 28 '22 06:09

Shaggy Frog