gpt4 book ai didi

swift - 我如何在聊天中显示用户最后一条消息旁边的个人资料图片

转载 作者:行者123 更新时间:2023-11-28 12:16:19 24 4
gpt4 key购买 nike

我正在使用 JSQ 消息 Controller 向我的应用程序添加聊天功能,但我也设法使用 Collection View 自行创建了一个。然而,Injust 无法弄清楚如何在用户的最后一条消息旁边显示个人资料图片。例如,他写了 3 条消息,聊天中没有其他人在两者之间写任何东西。现在我只想在第三条消息旁边显示个人资料图片。当我返回项目(单元格)时,我可以编辑我即将返回的项目(在 indexPath.item)。我可以确保之前的消息(位于 indexPath.item - 1)具有相同的 senderID。但我无法检查 indexPath.item + 1) 处的单元格是否来自同一发件人。由于我无法检查第二个,所以我不知道如何解决我的问题。我希望你明白我想做什么。

最佳答案

首先,我想向您指出接管 JSQMessageViewController 的新项目,因为 JSQMessageViewController 已被弃用,它称为 MessageKit .

创建一个函数来确定它是否是集合中的最后一条消息。

//Check if it is the last message in all your messages
//Check that the next message is not sent by the same person.
func isLastInSet(indexOfMessage: IndexPath) -> Bool {
if indexOfMessage.item == messages.count -1 {
return true
} else if {
return messages[indexOfMessage.item].senderID() != messages[indexOfMessage.item + 1].senderID()
}
}

现在只需在 avatarImageDataForItemAt 中添加对 isLastInSet 的调用,如果它返回 false,则将图像设置为 nil

func collectionView(_ collectionView: JSQMessagesCollectionView!, avatarImageDataForItemAt indexPath: IndexPath!) -> JSQMessageAvatarImageDataSource! {   
if let message = messages[indexPath.item]{
if isLastInSet(indexOfMessage: indexPath) {
return ImageData
}
}
return nil
}

关于swift - 我如何在聊天中显示用户最后一条消息旁边的个人资料图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46455041/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com