Reputation: 1563
I want to develop a game for iPhone. For 2D game development in iPhone which one of these would be better in the long run....Sparrow or Cocos2D? I've seen that there is a scarce documentation for Sparrow framework but Sparrow forum says it is easier to develop games in Sparrow as compared to Cocos2D. So, where should i start with?
Upvotes: 6
Views: 3565
Reputation: 58087
Cocos2d is thoroughly developed, and there are several books and a myriad of forums on the subject. I don't know too much about Sparrow. "Easy" is a relative term. If I were you, learn cocos2d.
Edit: since this question was asked, there's Apple's SpriteKit and a game engine I've built called MBTileParser.
Upvotes: 2
Reputation: 469
If your game is making use of large amount of animation, most likely that Cocos2D is your friend. It is because Cocos2D supports PVRTC texture which reduce memory usage. PVRTC is an image format. When it is loaded into RAM, it consumes less memory at the expense of image quality. PVRTC is not yet supported in the current version of Sparrow.
Upvotes: 1
Reputation: 1750
Both look pretty good for basic 2D development but Cocos2D seems a bit more mature (though Sparrow does seem to have a good start.
Another potential consideration is portability. The cocos2d API has been ported to android but Sparrow hasn't.
Upvotes: 4