vote up 1 vote down star
3

Which framework do you suggest for building a 2D platform game for the iPhone? I only need to move assets around the screen and detect collisions etc.

I would think OpenGL. But maybe Quartz 2D is enough? Or is there something else I should be aware of? What are advantages and disadvantages of each? I guess there is a longer learning curve for OpenGL, but that pays off in performance, right?

flag

8 Answers

vote up 2 vote down check

I am currently using and recommend Cocos2d. (http://cocos2d-iphone.org)

The documentation for cocos2d-iphone is pretty good and getting better all the time. There are some full working example games you can download and the API itself comes with quite a number of examples you can use.

Here is a good set of install directions you can use to get started:

http://permadi.com/blog/?p=130

Hope this helps!

link|flag
With so many people recommending it it should be worth a try – Dimitris Aug 18 at 16:32
vote up 0 vote down

Unity3D is not so much a framework as an engine, but 2D can be done (well) with it. Zombieville USA is Unity/2D (http://www.zombievilleusa.com/)

http://unity3d.com

link|flag
vote up 0 vote down

I thought OpenGL was very easy for 2D. I think it's easier to deal with a well-known API than to try to grok someone's layer on top of it.

link|flag
vote up 0 vote down

There are usually two schools of thoughts here when it comes to included iPhone frameworks:

  • go with Quartz 2D. If performance is not good enough, try Open GL. (for my 2D game, I'm following this path)
  • go for Open GL directly.

I haven't tried cocos2d, but that sounds like a great alternative to harness Open GL without having to deal with API.

link|flag
vote up -1 vote down

I think you might have two different answers depending on if you want to publish your game in the AppStore. If so, you have to use the provided/accepted frameworks or it won't be accepted. If not, then you are (of course) free to use anything.

link|flag
That's not true about cocos2d-iphone is it? – Dimitris Jul 29 at 17:03
cocos2d-iphone has been used in many apps on the AppStore, even paid ones see code.google.com/p/cocos2d-iphone/… – epatel Jul 29 at 17:53
I'm not saying that cocos2d isn't allowed in the appstore, I was just bringing up the point that the "best" frameworks are sometimes not allowed in appstore applications. It is something to be kept in mind if you are bringing in frameworks for an appstore application. – ongle Jul 29 at 18:18
vote up 4 vote down

cocos2d-iphone is pretty good. I have written some extensions to it which you can read about here and get here. Good luck!

link|flag
vote up 4 vote down

Have a look at cocos2d-iphone. I have heard only good things about it.

link|flag
vote up 4 vote down

Try cocos2d:

cocos2d is a framework for building 2D games, demos, and other graphical/interactive applications.

link|flag

Your Answer

Get an OpenID
or

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