vote up 0 vote down star

I'm reading a post about iPhone programming and I've noticed that the talk about Objective C++, the code shown in the post looks mainly like Objective-C but there also are several snippets in C++. Is it really possible to program Cocoa from C++?

flag

5 Answers

vote up 9 vote down check

In addition to the other comments, I would add that Objective-C++ is not exactly the same as "program Cocoa from C++" because there is no C++ to Cocoa bridge involved.

In Objective-C++, you program the Cocoa API entirely with Objective-C objects/syntax. The Cocoa API remains unchanged, so you need to communicate with it in the same way (using Objective-C strings, Objective-C arrays and Objective-C objects).

The difference with Objective-C++, compared to plain Objective-C, is that you can also use C++ objects (containing Objective-C objects, contained by Objective-C objects or just along-side Objective-C objects).

link|flag
Looks like quite a mess... – Adam Byrtek Jan 20 at 22:51
Works like a charm. – gs Jan 20 at 23:43
vote up 5 vote down

Yes. Basically, Objective-C is a set of Smalltalk like object extensions to C. Objective C++ is the result of applying those same extensions to C++. This leaves you with a language with two different object models.

Apple's xcode development environment provides both an Objective-C and Objective-C++ compiler.

link|flag
Is it just me or does the prospect of writing code in an environment with two different object models sound like a recipe for disaster to anyone else? – Michael Kohne Jan 21 at 3:49
vote up 3 vote down

Using C++ With Objective-C

link|flag
vote up 1 vote down

It's actually an easter egg in the Apple documentation to check whether anybody's reading - the same person wrote all of the WebScript documentation in the WO4 guides.

Yes, there is Objective-C++.

link|flag
vote up 0 vote down

Yes, there is.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.