- Feb
- 4
2010.02.04 19:36:51 by Ondrej Rafaj

Hi, today I would like to explain how to extend classes from the iPhone SDK frameworks. The main idea behind that is not to create loads of classes, one for each functionality, but create custom extensions for the existing ones.
Back to top
Read more ...
- Jul
- 2
2009.07.02 23:07:47 by Ondrej Rafaj

Objective-C is a powerful, easy-to-learn, object-oriented extension to C. Unlike in C++, advanced object-oriented features like dynamic binding, run-time type identification, and persistence are standard features in Objective-C which apply universally and work well together. Moreover, the support for descriptive message names (a la SmallTalk) makes Objective-C code easy to read and understand. Objective-C is supported by the GNU and NeXTSTEP C compilers.
I found this tutorial a while ago and I have no idea who's the author or the original url, if you know please let me know and will add the credit
Back to top
Read more ...
- Jul
- 2
2009.07.02 22:58:29 by Ondrej Rafaj

Objective-C is the primary language used to write Mac software. If you're comfortable with basic object-oriented concepts and the C language, Objective-C will make a lot of sense. If you don't know C, you should read the C Tutorial first.
This tutorial is written and illustrated by Scott Stevenson
Back to top
Read more ...
- Jul
- 2
2009.07.02 22:50:41 by Ondrej Rafaj

All the source code for this beginners guide including makefiles is available in the detail. Many of the examples in this tutorial were written by Steve Kochan in the book Programming in Objective-C. If you want more detailed information and examples, feel free to check out his book.
Back to top
Read more ...