如何从 swift 中的 quickblox 获取发件人个人资料图片?

How to get sender profile image from quickblox in swift?

我正在使用 QBChatMessage 获取聊天中发送的所有消息。

我已经在quickblox 的管理面板上传了用户的图片。现在,我在从 quickblox 内容获取图像时遇到问题。

有知道的请帮帮我。 因为我已经尝试使用 message.senderID 获取用户图像,但没有成功。

你试过这种方法吗?首先你应该通过id获取用户,然后检查他的avatarURlblobID

        QBRequest.userWithID(message.senderID, successBlock: { (response :QBResponse?, user:QBUUser?) in

        if user?.avatarUrl == nil {

            //no avatar. Download file by user's blob id
            let userProfileBlobUID = user?.blobID
            QBRequest.downloadFileWithID(UInt(userProfileBlobUID!), successBlock: { (response : QBResponse,imageData: NSData) in

                let image = UIImage(data:imageData)

                }, statusBlock: nil, errorBlock: nil)
        }
        else {
            //download image by url
        }

    }) { (response :QBResponse) in

    }