For another source of Objective-C information, Steve Dekorte has put together an Objective-C homepage.
Here are some more example files:
main.m
List.h
(Interface of List class.)
List.m
(Implementation of List class.)
Objective-C can be compiled using the GNU gcc compiler. The Unix
program make is often helpful for organizing the
compilation of multiple source files:
There is also a Usenet newsgroup called comp.lang.objective-c for discussion of Objective-C.
Periodically, a Frequently Asked Questions (FAQ) file is posted to comp.lang.objective-c.
Finally, you might want to check out the following book, which introduces object-oriented programming using examples in Objective-C, C++, Smalltalk, and Object Pascal: Budd, Timothy. Object-Oriented Programming. Addison-Wesley, 1991.
Michael Chui