vote up 3 vote down star
2

I want to make an iPhone app, but I am planning to make the framework in C++. Is it possible to use things like templates in Objective-C++. I guess really the question is, can I use boost?

flag

This may not be so helpful as an answer but if you already know C++, picking up Objective-C should be a breeze. Unless of course you're porting an app then I understand the question more. – Sean Apr 11 at 23:54
It can make sense to use C++ when you need very high performance, like in a game engine. – Chris Lundie Apr 12 at 5:56

6 Answers

vote up 9 vote down check

All of C++ is supported in Objective C++. It should be possible to use boost, but you might have to port some of the platform dependant things.

link|flag
vote up 3 vote down

Objective C++ is a superset of C++. Everything that you can do in C/C++ can be done in Obj-C++. The "Objective" portion contains, among other things, a Smalltalk-esque messaging system and other additions to C++.

link|flag
vote up 3 vote down

It should be pointed out that you can't just do everything that you can do in C++ in Objective-C++. For example you can't call virtual functions on C++ objects from an Objective-C class. Once you call into a C/C++ function you can do whatever you want though.

link|flag
I don't believe this is correct. You can call C++ virtual methods from within Objective-C++ code. – Barry Wark Oct 16 at 21:32
tinyurl.com/yfrxwg9 States that: "Objective-C++ similarly strives to allow C++ class instances to serve as instance variables. This is possible as long as the C++ class in question (along with all of its superclasses) does not have any virtual member functions defined. If any virtual member functions are present, the C++ class may not serve as an Objective-C instance variable." It appears in newer versions of the OS that this isn't a problem, but I think it is on the iPHONE OS. – Caleb Vear Oct 26 at 5:52
vote up 0 vote down

C++ objects in Objective C will NOT necessarily act like in C++. For example constructors and destructors are not automatically called and (i think) that you can't implement virtual methods...

link|flag
vote up 0 vote down

Is it possible to use things like templates in Objective-C++.

Yes, but you need to take care how you mix types and interfaces between the pure C++ layers and the Objective-C++ code. Keep in mind the boundaries between layers, where you would need to convert types such as std::string to NSString, and so on.

For example, you could implement the core game engine in pure C++, and just implement your controllers and GUI code in Objective-C++. Then the Obj-C++ code is the glue between the pure C++ engine and Cocoa.

I guess really the question is, can I use boost?

Given the iPhone OS is a subset of OS X that still provides a full POSIX layer, most Boost libraries should work just fine. It should be just like writing Darwin code.

There are a number of limitations in Objective-C++ to be aware of (taken directly from the Objective-C 2.0 Reference Guide):

  • you cannot use Objective-C syntax to call a C++ object
  • you cannot add constructors or destructors to an Objective-C object
  • you cannot use the keywords this and self interchangeably
  • the class hierarchies are separate; a C++ class cannot inherit from an Objective-C class, and an Objective-C class cannot inherit from a C++ class
  • an exception thrown in Objective-C code cannot be caught in C++ code and, conversely, an exception thrown in C++ code cannot be caught in Objective-C code.
link|flag
If you're going to downvote an answer, the least you can do is state why. The accepted answer (currenly with 9 votes) rather over-simplistically states that all features of C++ are available. This answer says a qualified yes, and quotes directly from the language reference explaining the limitations, and it gets downvoted. How does that work? – gavinb Oct 18 at 11:52
vote up 0 vote down

Boost is useful but it is also a large overhead to add to a project.

Make sure you really need it before you go adding it.

For Regex support: RegexLite.

For everything else: Cocoa.

link|flag

Your Answer

Get an OpenID
or

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