views:

45

answers:

2

What's a good book for learning Quartz in Objective-C? I thought about buying this book: Quartz 2D however, a reviewer said it's written mainly in C (I only know ObjC). So does anyone have any recommendations?

A: 

Have you checked the Quartz 2D Programming Guide from Apple? It explains things quite in detail.

taskinoor
While it is a good read. I feel a book would offer more context to each function. This is my first time doing graphics, so I have no foundation.
Icestorm
Im afraid that how many books are going to be more detail than this guide. However, if this is your first lesson in graphics(that is you don't understand what does translation, rotation means, how to obtain transformation matrix etc.) then definitely this is not right book. In that case you should start with a graphics text book.
taskinoor
A: 

Quartz uses a C API, just like many of Apple's frameworks. So it stands to reason that any book on Quartz is going to have a lot of C code. It is also a good idea to get very comfortable with C code since it is a subset of Objective C, and you'll have to frequently work with it.

Tim Rupe