IMbeeCore is a high level library that makes building a messaging app easy. IMbeeCore takes care about connecting to the server, synchronizing between connections, saving local data to disk, high-level conversation actions (sending messages, adding/removing contacts, ...) ...
Add IMbeeCore.framework to 'Embedded Binaries' on your project and run pod install. That's all!
With this new function you can directly create/connect your user and join/create a conversation:
IMbeeCore.registerAndGetConversation(withIdShaBot: idsha_bot,
userId: userId, serverAddress: api_domain, serverXmpp: xmpp_domain,
serverAdmin: nil, xmppUserDomain: xmppUserDomain, apiKey: apiKey,
done:
{ (conv, profile, previouslyRegistered, previouslyCreated) in
UserDefaults.standard.set(userId, forKey: "UserId")
self.conv = conv //Here ou receive the conversation from the server
self.previouslyCreated = previouslyCreated //To know if it was already created
//Now you are connected and you can interact with the bot.
} )