gpt4 book ai didi

swift - 在消息包聊天中显示用户名?

转载 作者:搜寻专家 更新时间:2023-11-01 06:54:05 25 4
gpt4 key购买 nike

我正在努力寻找一种在 MessageKit 聊天 View Controller 中显示用户名的方法。我从示例项目中复制了 MessagesDataSource,但没有成功。这是我的 MessagesDataSource 当前的样子:

extension ChatViewController: MessagesDataSource {

func currentSender() -> Sender {
//guard let currentUserID = User.current?.key else {return nil}
let newSender = Sender(id: (User.current?.key)!, displayName: (User.current?.username)!)
return newSender
}

func numberOfSections(in messagesCollectionView: MessagesCollectionView) -> Int {
//return 1
return messages.count
}

func messageForItem(at indexPath: IndexPath, in messagesCollectionView: MessagesCollectionView) -> MessageType {

return messages[indexPath.section]
}

func cellTopLabelAttributedText(for message: MessageType, at indexPath: IndexPath) -> NSAttributedString? {

return NSAttributedString(string: MessageKitDateFormatter.shared.string(from: message.sentDate), attributes: [NSAttributedString.Key.font: UIFont.boldSystemFont(ofSize: 10), NSAttributedString.Key.foregroundColor: UIColor.darkGray])
}

func messageTopLabelAttributedText(for message: MessageType, at indexPath: IndexPath) -> NSAttributedString? {
let name = message.sender.displayName
return NSAttributedString(string: name, attributes: [NSAttributedString.Key.font: UIFont.preferredFont(forTextStyle: .caption1)])
}

func messageBottomLabelAttributedText(for message: MessageType, at indexPath: IndexPath) -> NSAttributedString? {

let dateString = formatter.string(from: message.sentDate)
return NSAttributedString(string: dateString, attributes: [NSAttributedString.Key.font: UIFont.preferredFont(forTextStyle: .caption2)])
}
}

如果我在 let name = message.sender.displayName 之后放置一个断点,正确的用户名将显示在控制台输出中。但是,它仍然没有出现在聊天记录中。聊天 View 仍然只显示头像和消息,没有其他内容。

我错过了什么?

谢谢

最佳答案

虽然我不知道你使用的 MessageKit 版本是什么,但我很确定如果你尝试过这个一切都应该工作得很好,

func cellTopLabelAttributedText(for message: MessageType, at indexPath: IndexPath) -> NSAttributedString? {
let name = message.sender.displayName
return NSAttributedString(
string: name,
attributes: [
.font: UIFont.preferredFont(forTextStyle: .caption1),
.foregroundColor: UIColor(white: 0.3, alpha: 1)
]
)
}

因为我没有看到任何名为 messageTopLabelAttributedTextdataSource 函数

关于swift - 在消息包聊天中显示用户名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54961955/

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