Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there an alternative to cocoaasyncsocket written in Objective-C++? Or is it easy to convert? I need to use an UDP library for iPhone Objective-C++.

share|improve this question

3 Answers

up vote 1 down vote accepted

Converting valid Objective-C files to Objective-C++ is easier than 1,2,3; Simply rename all *.m files to *.mm and you are done.

share|improve this answer
But the cocoaasyncsocket library won't work then. It gives me errors like "Gcc error Pointer of type 'void *' used in arithmetic" on many places in the library. – Ellen S Jul 13 '11 at 9:03

Take a look at Networking & Internet Starting Point and CFNetwork Programming Guide from Apple docs

share|improve this answer

What exactly do you mean by Objective-C++? Objective-C or C++?

I would look into Apple's CoreFoundation first, which is available for OS X and iOS. There is all you need for doing networking. For example there is a CFSocket class, which should be sufficient to use UDP.

CoreFoundation is implemented in C, so it should be easy to use it from Obj-C or C++ code.

share|improve this answer
I use Fmod in the same application, which requires .mm files. If I include .m files from the library or rename them to .mm the application doesn't work on the iPhone. – Ellen S Jul 13 '11 at 9:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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