作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我安装了 XMPP,它用于在我的 iOS 应用程序中聊天。用户应该可以注销并让不同的用户登录并使用该应用程序。目前 XMPP 聊天运行良好,但如果我注销并尝试使用不同的用户名再次登录,则会出现以下错误。
2012-11-22 14:15:52.520 FMB[3297:c07] *** Assertion failure in -[AppDelegate setupStream], /Visni/Project/FMBXMPP/FMB/AppDelegate.m:843
2012-11-22 14:15:52.541 FMB[3297:c07] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Method setupStream invoked multiple times'
*** First throw call stack:
(0x24ee012 0x1fe3e7e 0x24ede78 0x1a79f35 0x6b46 0x8f49 0x50938 0x2f4a3 0x2ea84 0x215653f 0x2168014 0x21587d5 0x2494af5 0x2493f44 0x2493e1b 0x2b1b7e3 0x2b1b668 0xf2b65c 0x288a 0x2795)
libc++abi.dylib: terminate called throwing an exception
我的注销方法中有以下代码。
AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
[appDelegate disconnect];
关于如何正确注销用户并准备新登录的任何想法?
最佳答案
您可以通过这种方式断开 XMPP:
- (void) disconnectXMPP
{
[self.xmppStream removeDelegate:self];
[xmppReconnect deactivate];
[self.xmppStream disconnect];
self.xmppStream = nil;
}
关于ios - 如何在 iOS 上与 XMPP 断开连接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13508734/
我是一名优秀的程序员,十分优秀!