0

我正在制作简单的聊天应用程序,因此当用户点击聊天列表中的特定聊天时,他必须转到该特定聊天室中的最后一条消息(例如在 Telegram 中)。我试图创建自己的 scrollToBottom 函数:

func scrollToBottom(animated animated: Bool) {

    if self.collectionView.numberOfSections() == 0 {
        return
    }

    if self.collectionView.numberOfItemsInSection(0) == 0 {
        return
    }

    let collectionViewContentHeight = self.collectionView.collectionViewLayout.collectionViewContentSize().height
    let isContentTooSmall = collectionViewContentHeight < CGRectGetHeight(self.collectionView.bounds)

    if isContentTooSmall {

        self.collectionView.scrollRectToVisible(CGRectMake(0, collectionViewContentHeight - 1, 1, 1), animated: animated)
        return
    }

    let finalRow = max(0, self.collectionView.numberOfItemsInSection(0) - 1)
    let finalIndexPath = NSIndexPath(forRow: finalRow, inSection: 0)
    let finalCellSize = self.collectionView.messagesCollectionViewLayout.sizeForItem(finalIndexPath)

    let maxHeightForVisibleMessage = self.collectionView.bounds.height - self.collectionView.contentInset.top
    let scrollPosition: UICollectionViewScrollPosition = finalCellSize.height > maxHeightForVisibleMessage ? .Bottom : .Top

    self.collectionView.scrollToItemAtIndexPath(finalIndexPath, atScrollPosition: scrollPosition, animated: animated)
}

但是当我在 viewWillAppear 中调用它时,我会在它跳到聊天室的最后一行之前得到一点延迟,这并不好。请帮忙!

4

3 回答 3

1

viewWillAppear 将在 viewDidLoad 之后调用。如果您需要在 viewcontroller 启动后调用此方法,则可以在 viewDidload 方法中添加代码。但是如果你仍然需要使用 viewWillAppear,我建议将这个调用包装在主线程或主队列上。您可以为此使用 GCD 或 NSOperationQueue。

我认为这可能有助于解决延迟问题

于 2016-01-13T09:53:41.770 回答
0

如果聊天消息在 上呈现UITableView,请使用函数

    self.tableView scrollToRowAtIndexPath:<#(nonnull NSIndexPath *)#> atScrollPosition:<#(UITableViewScrollPosition)#> animated:<#(BOOL)#>

此方法将移动具有良好动画的内容。

于 2016-01-13T09:50:15.470 回答
0

感谢@Sabby,我将此代码添加到viewWillAppear,并且不知何故它起作用了

    let delayTime = dispatch_time(DISPATCH_TIME_NOW, 0)
    dispatch_after(delayTime,dispatch_get_main_queue()) {
        self.collectionView.contentInset.bottom = 40.0
        self.scrollToBottom(animated: false)
    }
于 2016-01-13T13:59:46.267 回答