我按照此tutorial并使用xmpp ios代码示例尝试连接到openfire服务器。
代码如下
- (void)setupStream
{
NSLog(@"Setting up Stream");
xmppStream = [[XMPPStream alloc] init];
[xmppStream setHostName:@"52.0.99.122"];
[xmppStream setHostPort:5222];
NSLog(@"Setup XMPP connection credentials");
#if !TARGET_IPHONE_SIMULATOR
{
xmppStream.enableBackgroundingOnSocket = YES;
}
#endif
xmppReconnect = [[XMPPReconnect alloc] init];
[xmppReconnect activate:xmppStream];
[xmppStream addDelegate:self delegateQueue:dispatch_get_main_queue()];
}
我想知道是否有办法调试或至少看到一些错误消息。 感谢。