我正在尝试构建一个使用PubNub的应用程序,但我无法弄清楚如何设置聊天名称。 Github演示似乎没有处理聊天名称,但是如果不确定聊天来自谁,那就好奇怪了。我需要使用某个字典键吗?我尝试了“chatName”,但这不起作用。
答案 0 :(得分:0)
您是否尝试过这样的'user_name':
- (NSDictionary *)asDictionary;
{
return @{
@"type" : @"chat", @"user_id" : @([self userId]), @"user_name" : [self userName], @"user_stores" : [self userStores], @"body" : [self body], @"time" : [self time]
};
}