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++.
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.
|
|
|
Converting valid Objective-C files to Objective-C++ is easier than 1,2,3; Simply rename all |
|||
|
|
Take a look at Networking & Internet Starting Point and CFNetwork Programming Guide from Apple docs |
|||
|
|
|
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. |
|||
|
