注册

ios群聊

请问一下 设置一个群聊的button    在viewcontroll里面是设置它跳转到哪一个页面上的
单聊是ChatViewController *chatVC = [[ChatViewController alloc]initWithConversationChatter:@"yeyeyeye" conversationType:EMConversationTypeChat];

    chatVC.title = @"yeyeyeye";

    [self.navigationController  pushViewController:chatVC animated:YES];
群聊怎么设置的
 
已邀请:
第一个参数传群id,第二个参数传EMConversationTypeGroupChat.
群聊是ChatViewController *chatVC = [[ChatViewController alloc]initWithConversationChatter:群聊的ID conversationType:EMConversationTypeGroupChat];

    chatVC.title = @"yeyeyeye";

    [self.navigationController  pushViewController:chatVC animated:YES];

要回复问题请先登录注册