注册

ios 创建聊天室,能发消息但是不能接收消息(重点是iphone6plus 不能接收,其他机型正常使用)

官网上sdk教程如下,通过代理调用接收信息方法
    [[EMClient sharedClient].roomManager addDelegate:self delegateQueue:nil];

    [[EMClient sharedClient].chatManager addDelegate:self delegateQueue:nil];
 
 
接收消息
- (void)messagesDidReceive:(NSArray *)aMessages {
    NSMutableDictionary*mgDci=[NSMutableDictionary dictionary];
    for (EMMessage *message in aMessages) {
        EMMessageBody *msgBody = message.body;
        // 消息中的扩展属性
        NSDictionary *ext = message.ext;
}
}
 
我用iPhone6、iPhone7plus和iPhone6plus ,还有多台安卓机加入聊天室,5台机器进行测试,唯独是iPhone6plus不能接收消息,发送消息有点延迟。。。。。
这问题困扰了我好几天了,求解求解求解----------------------
 
 
 
-------------------------------------------------------
接收消息
- (void)messagesDidReceive:(NSArray *)aMessages {
    NSMutableDictionary*mgDci=[NSMutableDictionary dictionary];
    for (EMMessage *message in aMessages) {
        EMMessageBody *msgBody = message.body;
        // 消息中的扩展属性
        NSDictionary *ext = message.ext;
}
}
连接真机测试>>>>>>>>>>>>>>>>>>>>>>>>>>>
打断点了,iphone6能接收到消息。。。。。。。。
打断点了,iphone7plus能接收到消息。。。。。。。。

重要问题说三遍:
 
打断点了,为什么就iphone6plus无法接收消息???????????
打断点了,为什么就iphone6plus无法接收消息???????????
打断点了,为什么就iphone6plus无法接收消息???????????
 
 
 
---------------------------------------------------------
已邀请:

要回复问题请先登录注册