问题描述
demo里面的ext都有哪些扩展出来的属性!?
解决方案
ext是一个字典类型的扩展属性,不设置ext就是空的,ext是根据自己的需求去设置的内容,比如在需要实现头像和昵称的时候,可以在我ext中放入头像的url、昵称,在接收方收到消息的时候将ext中的值取出,获取便可获取头像昵称属性。
解决方案二:
这样没有赋值成功的,因为conversation.ext是NSDictionary,不是NSMutableDictionary,需要先建一个字典赋好值,再付给ext。
解决方案三:
EMConversation *conversation = [[EaseMob sharedInstance].chatManager conversationForChatter:HXGroupId conversationType:eConversationTypeGroupChat]; [conversation.ext setValue:HXGroupName forKey:@"groupSubject"]; NSLog(@"....conversation.ext...%@",conversation.ext);我是这样写的但是为什么下面这个输出是空呢 ?
时间: 2024-10-27 06:08:01