我想在我的代码中检查 QBChat/didDisconnect,因为我想在 QBChat/didDisconnect 时强制用户再次登录应用程序。我已经在使用以下方法,但有时会出现如下错误:
QBChat/didDisconnect, error: Error Domain=GCDAsyncSocketErrorDomain Code=7 "Socket closed by remote peer" UserInfo=0x9ca1260 {NSLocalizedDescription=Socket closed by remote peer} ;
- (void)sendPresence{
// presence in QuickBlox Chat
[[QBChat instance] sendPresence];
// presence in QuickBlox
[QBUsers userWithExternalID:1 delegate:nil];
}
顺便说一句,在使用“[[QBChat instance] createOrJoinRoomWithName"name"membersOnly:NO persistent:YES];”创建聊天室后,需要时间来制定以下方法。有时,该方法调用不正确。
- (void)chatRoomDidEnterQBChatRoom *)room{
}
Best Answer-推荐答案 strong>
你可以使用QBChatDelegate的方法
-(void)chatDidFailWithErrorint)code
{
}
如果是手动注销 - 代码将等于 0
关于ios - QuickBlox 如何检查 QBChat/didDisconnect 以强制用户再次登录?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/19150338/
|