iOS XMPP group chat implementation
问题 I am trying to create chat room using robbiehanson XMPPframework. Since I didn't get any sample code or documentation, I made a try by myself to initiate a chat room as follows: XMPPRoomMemoryStorage *rosterstorage = [[XMPPRoomMemoryStorage alloc] init]; XMPPRoom *xmppRoom = [[XMPPRoom alloc] initWithRoomStorage:rosterstorage jid:[XMPPJID jidWithString:@"test@mycompany.com/room"] dispatchQueue:dispatch_get_main_queue()]; [xmppRoom configureRoomUsingOptions:nil]; [xmppRoom activate: