vote up 1 vote down star

I have no Objective-C experience whatsoever but have a strong C++ background. Is there an automated tool/script or, worst case, some manual method using some excellent reference to port code written in Objective-C to C++? What are the difficulties involved?

Edit: I'm told the code uses Objective-C fairly trivially. It's an iPhone app that probably doesn't use much in the way of OS-level UI. The C++ version is meant for a non-Apple platform where GNUStep is not an option, so Objective-C++ is not an option.

flag

36% accept rate
Have you got that the right way around? You have a strong C++ background, but you want to port stuff to C++? – Cebjyre Apr 1 at 3:51
@Cebjyre, He doesn't know Obj-C enough to read it and translate into C++. He can, however, correct C++ bugs when they pop up due to faulty translation. At least, that's what I speculate. – strager Apr 1 at 3:53
I'll accept that as a possibility, but I'd say the conversion process would be likely to introduce more bugs in buggy code, so a tool to convert known C++ code into Obj C code would be handy from a learning perspective. – Cebjyre Apr 1 at 4:03
@strager - yep, that's it. – Jim Buck Apr 1 at 14:35

2 Answers

vote up 3 vote down

There are no automated tools that I'm aware of. The dynamic nature of Objective-C is very hard to translate to C++, so quite a bit of brain effort is going to be required for all but trivial Objective-C code. Are you willing to stay on OS X (or keep the GNUStep dependency if you're one of the few people using Objective-C on an OS besides OS X)? If so, the easiest approach is to use Objective-C++ to build a bridge beteen the Objective-C and C++ code. Objective-C++ is an Apple extension to Objective-C and the GCC compiler that allows you to mix Objective-C and C++ code. You can thus create Objective-C objects that call or reference (but not inherit from) C++ objects and you can send Objective-C messages to Objective-C instances from within C++ code.

link|flag
vote up 0 vote down

Objective-C was just a pre-processor (and a runtime library). You'll find more problems in porting all the libraries than the end-user code. Nil-eating behavior is going to be fun when translating.

You are likely to start seeing bad design in all c++ code after using Objective-C frameworks for a while.

link|flag

Your Answer

Get an OpenID
or

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