tags:

views:

56

answers:

2

Hi, I know about http://www.dragonfiresdk.com/index.htm but is there other tools that I can use to write C++ for iPhone? Is there a book maybe?

+1  A: 

You can use c++ for iPhone development - this might help:

http://iphonedevelopertips.com/cpp/c-on-iphone-part-1.html

Alternatively, just learn Objective-C it's nice :)

zinc
+1  A: 

Are you looking for more ways to avoid using a mac and xcode, or just other c++ tools?

For the latter, almost any c or c++ library will work. Basically you can embed c++ objects in your objective-c objects and make use of them. Apple calls mixing c++ with objective-c objective-c++: http://developer.apple.com/Mac/library/documentation/Cocoa/Conceptual/ObjectiveC/Articles/ocCPlusPlus.html

ergosys