English 中文(简体)
Does cocos2d framework work on iPad?
原标题:

Does Cocos2d iPhone framework work on iPad?

My guess would be yes, but wanted to check if someone has a definitive answer after porting iPhone project with cocos2d to iPad, or starting a new one.

最佳回答

Cocos2d v0.99.0-rc was released today which formally supports the iPad.

http://www.cocos2d-iphone.org/archives/511

问题回答

Apple confirms that all applications available in the app store can be run on iPad See this link: http://www.apple.com/ipad/app-store/

With that said, Cocos2D is just an opensource library which consists mostly of Objective-c/Cocoa code. It will work just fine.

Also, Apple developer program (link here: http://developer.apple.com/iphone) mentions: "iPhone Developer Program Members can begin developing iPad applications with iPhone SDK 3.2 beta".

Go ahead and get started...

According to Engadget, the iPad runs all iPhone apps with no modifications which means that it supports the Cocos2d library.

Engadget





相关问题
Cocos2d - Shooting Game Problem

everyone, I made a shooting game just like 1942(classic shooting game),but here s the question, FPS drops to 5~6 when the fighter shoot out a straight line of bullet,about 7~8 bullets in the screen,...

AtlasSpriteManager animation

I am using AtlasSpriteManager and AltasSprite to create frame by fram animation with 1 one file. I wanna write something that at first show a simple picture, without any animation and for example when ...

background moves together with image

I have 4 images and a background. I already about to animate the image to move accordingly. But the back ground is not moving. I am not sure how to make the background move accordingly to the movement ...

NSMutable array invalid after objectAtIndex

@implementation Level @synthesize doors, rooms; - (id) init { self = [super init]; if (self != nil) { rooms = [[NSMutableArray alloc] init]; doors = [[NSMutableArray alloc] init]; ...

How to subclass AtlasSpriteManager in Cocos2d?

I need to create some compound sprites that will all move and rotate together. Since it s possible to change the position and rotation of an AtlasSpriteManager I ve been trying to subclass so I can ...

热门标签