vote up 11 vote down star
1

What are the trade-offs for using Carbon vs. Cocoa considering a developer with about 15 years of programming experience already in C/C++.

Is Carbon a dead end with OS X?

flag

Good question...my first ever mac arrives in a couple of days and I had a similar thought. – Kev Sep 30 '08 at 4:07

7 Answers

vote up 22 vote down check

"If you want to create a 64-bit application for Mac OS X, you need to use Cocoa to implement its user interface."

It seems that the whole situation is a bit complicated, but while Carbon may not be a complete dead end for Mac OS X development, if you're new to developing for the Mac, I can't see why you would start with anything other than Cocoa.

link|flag
The link in the answer appears to be broken. – staffan May 25 at 14:31
Link seems fine now. – TimB Jun 19 at 1:43
vote up 2 vote down

Carbon is a dead end, Apple isn't really into supporting it much more(as in how they act, as opposed to what they say), my guess is Objective-C is all they need, or maybe they're making a more modern C++ api, not like Carbon and its Win32 style api.

Oh, and the Ojective-C messaging framework is a really good solution to handle scalable multithreaded application with out complicating things or requiring programmers to think much about multithreaded issues like races and dead-locks. Actually I think that in that sense it's even superior to C# or C++, for simple application development during the next few years, until the next language revolution.

link|flag
vote up 3 vote down

There are a few compelling reasons to use Carbon, but for most new code, using Cocoa will be less work overall (even including learning Objective-C). Unless you've got existing Carbon code, or you're trying to tie into an existing cross-platform UI library, you probably ought to use Cocoa.

Carbon is a "dead end" in that Apple's not adding as much new API to Carbon vs. the Cocoa frameworks. Carbon is also not supported for 64-bit programs. It's not likely that Carbon will actually cease to be supported entirely any time soon.

link|flag
"There are a few compelling reasons to use Carbon"; what are they? Explaining when Carbon is still useful would be a very useful answer to this question. – Mark Baker Sep 30 '08 at 14:50
Sorry, I thought I had - if you're interfacing to an existing multi-platform UI library, or you've already got Mac code, then Carbon is for you. Otherwise, use Cocoa. – Mark Bessey Sep 30 '08 at 15:58
vote up 4 vote down

You're supposed to be able to mix C, C++, and Objective-C, so you could use Cocoa purely for the UI, and write the rest in C++.

link|flag
and there's even the Objective-C++ thing where you can use Cocoa directly from your C++ code at the expense of getting rather confused by the two incompatible object models being used simultaneously. – Mark Baker Sep 30 '08 at 14:51
vote up 2 vote down

Cocoa (with Objective-C) is great for the UI.
But hat does not prevent you from mixing this with C++ for storing and manipulating the data behind the scenes.

As for Carbon. I am not sure.
I use the Objective-C and C++ in combination. Use the correct language for the correct job.

link|flag
vote up 4 vote down

One thing to consider is iPhone portability; I think it has Cocoa APIs only.

link|flag
vote up 3 vote down

Mac OS X developers who primarily use Cocoa still use Carbon all the time. It is a very common occurrence to have to use a carbon API when there isn't an equivalent Cocoa API.

Just think of Carbon as another tool (or rather set of tools) in your API toolbox. There's no need to play the "OMG Carbon Sucks! Cocoa rules!" game. It isn't healthy.

I'd hazard a guess that most popular Cocoa applications have a dash of Carbon in them.

The iPhone does change this a little. The iPhone SDK is (mostly) new from the ground app and Carbon wasn't included (but then so was a huge chunk of Cocoa too).

Use whatever tool allows you to do you work most efficiently and stop worrying about the whole Cocoa vs Carbon thing.

link|flag
3  
Replace "Carbon" with "C Function based APIs" in your comment, and you are mostly correct. But every C Function based API isn't Carbon. Carbon is a event loop model environment whatchamacallit, and an app uses one or another. – benzado Oct 1 '08 at 4:33

Your Answer

Get an OpenID
or

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