I have been using the same code to login the user to chat
var user = QBUUser()
user.ID = session.userID
user.login = "123456"
user.password = "password"
QBChat.instance().loginWithUser(user)
But for the last 5 days i get an error that states that the user has to login to chat.
2015-08-11 12:13:48.690 buyzar[3063:73416] -[QBChat(Deprecated) sendMessage:] -> return. You have to be logged in in order to use Chat API
Is there any change i am not aware of?
Make sure that you have a valid session first. Here is the code that I am using and it works perfectly as you use the completion handle to ensure that the user is logged in before you do anything else.
Here is an example of me calling this code: