Francesco Pace
Francesco Pace
Same issue here.
Anyone can help me?
It's a simply "for" : ``` objc for(NSString *roomRealJid in myRoomsJidArray) { XMPPRoom *newXmppRoom = [[XMPPRoom alloc] initWithRoomStorage:xmppRoomStorage jid:roomRealJid]; [newXmppRoom fetchConfigurationForm]; [newXmppRoom activate: xmppStream]; [newXmppRoom addDelegate:self delegateQueue:dispatch_get_main_queue()]; [newXmppRoom joinRoomUsingNickname:xmppStream.myJID.user history:nil];...
Do you mean something like this snippet? ``` XMPPRoom *newXmppRoom = [[XMPPRoom alloc] initWithRoomStorage:xmppRoomStorage jid:roomRealJid dispatchQueue:dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0)]; [newXmppRoom activate: xmppStream]; [newXmppRoom fetchConfigurationForm]; [newXmppRoom addDelegate:self delegateQueue:dispatch_get_main_queue()]; [newXmppRoom joinRoomUsingNickname:xmppStream.myJID.user history:nil]; ``` I...
I've tried, nothing. My ViewController still freezes! This is my code: ``` objc - (void) autoJoin { for(NSString *roomRealJid in myRoomsJidArray) [self joinRoom:roomRealJid]; } } - (XMPPRoom*) joinRoom:(NSString*) roomJid {...
Hi, I've 5 rooms. How can use instrument to find the statement where the app frezees?
Hi @GauvainSeigneur , thanks for your response. Did you find a solution that avoid the set of 25.3.0 version?
Hi @jkasten2 thanks for your reply. For my projects, usually I works in offline mode (travel, meeting, etc..) and It would be important for me to have the possibility to...
@jkasten2 thanks for your response, but currently I'm not able to sync my project in offline mode. Please, follow these steps: - Add on root build.gradle: `classpath 'gradle.plugin.com.onesignal:onesignal-gradle-plugin:0.12.1'` - Add...