我想开发UDP客户端并在
Swift中发送数据.
我参考了以下链接:
Swift: Receive UDP with GCDAsyncUdpSocket
Retrieving a string from a UDP server message
但我找不到在Swift中实现UDP的好方法.
有人可以教我如何实现UDP客户端并在iPhone上的Swift中发送数据?
最佳答案 对我来说,我使用了
this及其用法:
broadcastConnection = UDPBroadcastConnection(port: 35602) { [unowned self] (response: (ipAddress: String, port: Int, response: [UInt8])) -> Void in
print("Received from \(response.ipAddress):\(response.port):\n\n\(response.response)")
}