Reputation: 71
I am learning C and Objective-C so am still dependent on examples...
I found AsyncUDPSocket which has a lot of example code in the Google Code repository, but I'm not far enough along to understand it all yet. I'm trying to build an iPhone app that uses UDP for communication to another device (Arduino). I have the device end working (testing with the UDP Tool app). I just need help with the iOS side of it...
An example with more explanation would really help (that is, a tutorial)... Is there one or what would some example code with good comments be?
Upvotes: 6
Views: 8869
Reputation: 27214
https://github.com/robbiehanson/CocoaAsyncSocket
GCDAsyncUdpSocket
and AsyncUdpSocket
are UDP/IP socket networking libraries. Here are the key features available in both:
Upvotes: 7