"I already know C++. Why do I have to learn Objective C?"
Objective C and C++ are different in their design and intent. C++ extends and modifies C significantly to create a new object-oriented language. The complexity of these changes sometimes leads to confusing interactions between features. Learning C++ can be a lengthy process, and without a stable standard, differences between C++ compilers can add to the confusion.
Objective C is a set of simple extensions that provide ANSI C (or C++) with a simple but powerful standard object model. Most C programmers will be able to learn enough Objective C for most applications in a few days.
Because of this difference in design philosophy, each language has its own benefits and limitations. OPENSTEP's development tools give you the widest range of possibilities by allowing C programmers to write object-oriented code quickly with Objective C, while allowing C++ programmers to mix Objective C and C++ in their projects. Because of its simplicity, Objective C does lack some features that C++ provides; however, most of C++'s functionality can be accessed in other ways in Objective C. Apple also allows you to use all of the features of C++ by including native C++ objects in your OPENSTEP or WebObjects programming projects.