Cocoa Dev Central: Learn Objective-C
The Objective-C syntax for creating a class is very simple. It typically comes in two parts. The class interface is usually stored in the ClassName.h file, and defines instance variables and public methods. The implementation is in the ClassName.m file an...