空白单元格在 UITableView 中随机出现和消失

Blank cells appear and dissapear randomly in UITableView

我正在尝试模拟聊天消息,在插入一些新单元格后,一些最旧的单元格消失了。当我滚动时再次出现并消失。我已经尝试了从这里找到的所有解决方案,但没有任何效果,而且我也不知道哪里会出现错误。

我不确定我应该 post 向您提供什么代码,我会 post 我的 TableView 代码,所以也许我做错了什么,或者如果您需要其他任何东西,请告诉我。

func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
    return UITableViewAutomaticDimension
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return self.messagesCell.count
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        return self.messagesCell[indexPath.row]
}

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    let message = self.messages[indexPath.row]
    if message.messageType == 2 {
        output.setImageUrl(message.text)
        router.navigateToGroupChatMessagesScene()
    }
    else {
        self.view.endEditing(true)
    }

}

这段代码是我每次插入新消息时生成单元格的方式:

func getMessageCell(withDisplayedMessage displayedMessage: GroupChatMessages.GetChatMessages.displayedChatMessage) -> GroupChatCell {

    switch displayedMessage.messageType {
    case 0:
        if displayedMessage.sender == self.currentUser.userID {
            let cell = self.messagesTableView.dequeueReusableCellWithIdentifier("senderCell") as! GroupChatCell

            dispatch_async(dispatch_get_main_queue()) {
                cell.configureCellText(withText: displayedMessage.text, andUtcSendTime: displayedMessage.utcSendTime)
                cell.selectionStyle = UITableViewCellSelectionStyle.None
            }
            return cell
        }

        let cell = self.messagesTableView.dequeueReusableCellWithIdentifier("receiverCell") as! GroupChatCell
        cell.configureCellAttributted(withText: displayedMessage.text, andSenderName: displayedMessage.senderName, andUtcSendTime: displayedMessage.utcSendTime)
        cell.selectionStyle = UITableViewCellSelectionStyle.None
        return cell

    case 1:
        let cell = self.messagesTableView.dequeueReusableCellWithIdentifier("announcementCell") as! GroupChatCell

        dispatch_async(dispatch_get_main_queue()) {
            cell.configureInformationCell(withText: displayedMessage.text)
            cell.selectionStyle = UITableViewCellSelectionStyle.None
        }

        return cell
    case 2:
        if displayedMessage.sender == self.currentUser.userID {
            let cell = self.messagesTableView.dequeueReusableCellWithIdentifier("senderImageCell") as! GroupChatCell

            dispatch_async(dispatch_get_main_queue()) {
                cell.configureSenderImageCell(withImageUrl: displayedMessage.text, andUtcSendTime: displayedMessage.utcSendTime)
                cell.selectionStyle = UITableViewCellSelectionStyle.None
            }

            return cell
        }

        let cell = self.messagesTableView.dequeueReusableCellWithIdentifier("receiverImageCell") as! GroupChatCell

        dispatch_async(dispatch_get_main_queue()) {
            cell.configureImageCell(withImageUrl: displayedMessage.text, andSenderName: displayedMessage.senderName, andUtcSendTime: displayedMessage.utcSendTime)
            cell.selectionStyle = UITableViewCellSelectionStyle.None
        }
        return cell

    case 10: //SpecialCaseForSendingImages
        let cell = self.messagesTableView.dequeueReusableCellWithIdentifier("senderImageCell") as! GroupChatCell

        dispatch_async(dispatch_get_main_queue()) {
            cell.configureSenderImageCell(withImageUrl: displayedMessage.text, andUtcSendTime: displayedMessage.utcSendTime)
            cell.selectionStyle = UITableViewCellSelectionStyle.None
        }

        return cell
    default:
        return GroupChatCell()
    }

希望你能帮到你,任何进一步的信息我都会尽快提供给你!非常感谢。

编辑:

在我收到新消息的地方,我在此函数中添加了一个包含消息信息的新行:

    func displayMessages(viewModel: GroupChatMessages.GetChatMessages.ViewModel) {
    let displayedMessage = viewModel.displayedMessages

    print ("i'm here!")
    if let messages = displayedMessage {

        self.messages = messages
        self.messagesCell = []
        for index in 0..<messages.count {
            let cell = self.getMessageCell(withDisplayedMessage: messages[index])
            self.messagesCell.append(cell)

            let indexPath = NSIndexPath(forRow: index, inSection: 0)
            self.messagesTableView.insertRowsAtIndexPaths([indexPath], withRowAnimation: .Automatic)
        }

        print ("i'm here2!")

        firstTime = false
//            self.scrollToLastMessage(false)
        self.setVisible(hiddenTableView: false, hiddenChatLoader: true)
        self.messagesLoaded = true
    }
}
  1. 摆脱 dispatch_async 你应该已经在主 线。
  2. 保留模型对象数组而不是单元格数组(在 你的情况看起来应该是一个数组 displayedMessage).
  3. 还要记住,这些细胞可以重复使用, 因此您设置的任何 属性 必须始终更新。换一种说法 配置单元格时,每个 if 必须有一个 else

希望对您有所帮助。