I want to develop UDP client and send data in Swift.
I have reference the following link:
Swift: Receive UDP with GCDAsyncUdpSocket
Retrieving a stri
After pretty extensive research coming up with only basic pointers towards GCD's AsyncSocket, and being a pure Swift trained iOS programmer, I looked for something with native Swift socket support.
Thankfully, I found a much simpler alternative to using Async, called SwiftSocket.
The github (https://github.com/xyyc/SwiftSocket) has examples for most sockets, and is ready to use by copying just a few files into a project.
For swift-only devs, I feel its underutilized and will quickly replace Async for non-objective-c apps. Then again I'm pretty new to this stuff so I may be way off :D