cocoa asyncudpsockets 不发送字节流
我有一个小的 MAC OS X 应用程序,它应该向服务器发送 UDP 数据报。
我想使用可可 asyncudpsockets (http://code.google.com/p/cocoaasyncsocket/) 来做到这一点,但我有一个问题,我调用“sendData”方法但没有任何反应。
[socket sendData:[NSData dataWithBytes:stream length:length]
toHost:host
port:(uint16)port
withTimeout:5
tag:1];
流是一个字节*,包含数据报主机是一个 IP 地址,如 NSString。
有人可以帮助我吗?
I have a little MAC OS X Application that should send a UDP Datagram to a server.
I want to use the cocoa asyncudpsockets (http://code.google.com/p/cocoaasyncsocket/) to do this, but i have the problem that i call the "sendData" method but nothing happens.
[socket sendData:[NSData dataWithBytes:stream length:length]
toHost:host
port:(uint16)port
withTimeout:5
tag:1];
stream is a Byte* contains the datagram host is a ip-address as NSString.
Can anybody help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否正确设置了代表?
然后:
然后在委托方法中:
希望它会有所帮助;-)
Did you correctly set the delegate ?
Then :
Then in the delegate method :
Hope it will help ;-)