hi there:
I'm trying Tigase's Xmpp service for the first time, and I have to say it's amazing. It's more powerful and easy to use than Smack and Xmppframework.
but i have a problem, in your documentation , client register MucModule just need call init , like this:
`client.modulesManager.register(MucModule())`
in TigaseSwift, XCode tell me i have to give a roomsManager:
`client.modulesManager.register(MucModule(roomsManager:))`
and client's connectionConfiguration have to setServerHost and setServerPort ,Otherwise, the link will fail.
Finally, I want to know which one means that the client has logged in successfully, whether the registration success or the verification success is successful.
Can you answer me in as much detail as possible or update the document? Thank you very much``
hi there:
I'm trying Tigase's Xmpp service for the first time, and I have to say it's amazing. It's more powerful and easy to use than Smack and Xmppframework.
but i have a problem, in your documentation , client register MucModule just need call init , like this: