开发者

Iphone 2D app suggestion

开发者 https://www.devze.com 2023-02-21 21:14 出处:网络
I need to develop a Iphone 2D app for school project. I don\'t have object C and C++ background. I just go through the Iphone App develop process on-line. Any suggestions to quickly build a 2D iphone

I need to develop a Iphone 2D app for school project. I don't have object C and C++ background. I just go through the Iphone App develop process on-line. Any suggestions to quickly build a 2D iphone app?

Should I must use either Opengl-es or Quartz? Is there any framework could help to quickly draw line and curve wit开发者_JAVA百科h 2D?

Thanks in advance!


Cocos2d maybe? (though you will need to learn some objective-c)

GCDrawKit could be good too if you need more vector-like stuff


As Ben has said Cocos2d is a good option. And, to extend it a little further for Cocos2D:

int the -(void)draw method:

ccDrawLine(startPoint, endPoint);

draws a line.

And to draw a curve you can use this function on this website in the cocos2d draw method:

http://www.bit-101.com/blog/?p=2152


It's going to be difficult to "quickly build a 2D iphone app". To do it correctly, you really need to understand how everything works together, or you're likely to have tons of bugs and memory leaks. That said, there are some libraries that can help you do some of the dirty work. For example, there is the Unity game development tool. I've used the 3D version, and it runs a bit slower on older phones, but the 2D version should run much faster. There are other dev tools available too, just search google for one that looks appealing.


Start off by learning objective-c first. Learn to draw using the high level cocoa methods such as NSBezierPath, then move slowly towards Core Graphics(Quartz). Begin by understanding what a graphics context is and how to draw simple objects onto it (i.e. lines, boxes, circles, etc).

I assume you might want to know a bit about animations so learn a bit about Core Animation too.

It's a fun process. Wish you enjoy it.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号