我正在使用 XMPP 框架开发一个聊天应用程序。我可以发送和接收聊天消息,并且我想传输文件。
我使用了 TURNSocket,但它没有用。
我的代码:
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
NSMutableArray *turnSockets=[NSMutableArray alloc] init];
}
return self;
}
- (void)viewDidLoad
{
XMPPJID *jid = [XMPPJID jidWithString:@"venkat.varra@gmail.com/gmail.9D2001A1"];
TURNSocket *turnSocket = [[TURNSocket alloc] initWithStream:[self xmppStream] toJID:jid];
[turnSockets addObject:turnSocket];
[turnSocket startWithDelegate:self delegateQueue:dispatch_get_main_queue()];
}
- (void)turnSocket:(TURNSocket *)sender didSucceed:(GCDAsyncSocket *)socket
{
NSData *dataF = [[NSData alloc] initWithContentsOfFile:
[[NSBundle mainBundle] pathForResource:@"orange" ofType:@"png"]];
[socket writeData:dataF withTimeout:60.0f tag:0];
}
- (void)turnSocketDidFail:(TURNSocket *)sender
{
NSLog(@"TURN Connection failed!");
[turnSockets removeObject:sender];
}
当我运行这个程序时,它总是调用 turnsocketDidFail 方法。
如何在 iPhone 中使用 turn socket 在聊天应用程序中实现文件传输?谁能帮我?提前致谢