有没有可能使用UDP套接字与C#.Net服务器和iOS客户端通信?

时间:2015-07-13 06:16:00

标签: ios objective-c iphone sockets udp

我正在为iOS做IP Messenger演示,我对Objective-c ans有所了解,我不知道C#.net。服务器是用C#.net开发的,客户端必须在objective-c中开发。有没有可能进行这种类型的演示。我尝试了一些能够发送文本而不是文件(图像)的演示。我试过这个演示CocoaUDPAsyncSocket。任何人都可以帮我发送图像吗?

 NSString *str=[NSString stringWithFormat:@"1:55:%@:IPhone:2097184:Hello\0 0:down-arrow.png:219:14de76bd790:1:\a",deviceInfo.name];
    NSData *data = [str dataUsingEncoding:NSUTF8StringEncoding];
    [asyncUDPSocket sendData:data withTimeout:-1.0 tag:0];
//219 is length of image. 14de76bd790 is last modified 
//of image both are in Hexadecimal. 2097184 is command number to send image file.

0 个答案:

没有答案