views:

43

answers:

1

I'm doing iPhone programming and I need to learn about Core Graphics.
It looks Apple doesn't provide a programming guide for Core Graphics and I'm having hard times following the code that uses Core Graphics.

Do you suggest any reference or book for learning Core Graphics?

A: 

I would start here iOS Reference Library and type in Core Graphics. Also, check out 'Sample Code' and 'Graphics & Animation'. You will find that Core Animation tends to subsume Core Graphics, so reading about Core Animation might be helpful.

westsider
Thanks, this is the best thing I can get right now: http://developer.apple.com/library/ios/#documentation/GraphicsImaging/Conceptual/drawingwithquartz2d/Introduction/Introduction.html
El Gusto
Check out the sample code as well. I always find that useful because you can run it and then tweak it. For example, <http://developer.apple.com/library/ios/#samplecode/QuartzDemo/Introduction/Intro.html> and, to a lesser extent, <http://developer.apple.com/library/ios/#samplecode/Touches/Introduction/Intro.html>
westsider