UICollectionview滚动到ItemAtIndexPath,在动画完成之前不加载可见单元格



我有一个有142个细胞的UICollectionView。7.5在任何时候都是可见的。

我将一个单元格从indexPath 0移动到100。但我也想滚动到那个新位置。

下面的代码运行良好。但它会为移动和滚动设置动画,但随后会加载中心/移动单元格前后的单元格。我认为这是因为细胞是可重复使用的。但是有了142,我无法预加载所有

这不是最好的效果,我想预加载新位置周围的单元格,indexPath 100之前和之后的4个,然后查看移动和滚动的动画。你能帮忙吗?

UIView.animateWithDuration(animationSpeed, animations: {() -> Void in
    self.collectionView.layoutIfNeeded()
    self.collectionView.scrollToItemAtIndexPath(NSIndexPath(forItem:self.indexPathSelected.row, 
                                                 inSection:0), 
                                                 atScrollPosition: .CenteredHorizontally, 
                                                 animated: true)
})

Swift 3.0或以上

在实现scrollToItem方法之前添加"view.layoutIfNeedd()",理想情况下在viewWillAppear 中

override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
view.layoutIfNeeded()
  colView.scrollToItem(at: IndexPath(item: 4, section: 0), at: .centeredHorizontally, animated: true)}

我使用dispatch_async来更新UI,它可以工作。

let numberOfSections = self.collectionView.numberOfSections()
let numberOfRows = self.collectionView.numberOfItemsInSection(numberOfSections-1)
    if numberOfRows > 0 {
        dispatch_async(dispatch_get_main_queue(), {
            let indexPath = NSIndexPath(forRow: numberOfRows-1, inSection: (numberOfSections-1))
            self.collectionView.scrollToItemAtIndexPath(indexPath, atScrollPosition: .Bottom, animated: true)
        })
    }

我找到的唯一答案是在动画中添加几秒钟。这样,当滚动到达时就会加载单元格

我找到的最佳解决方案是使用DispatchQueue

Swift 4.2:

 override func viewWillAppear(_ animated: Bool) {
    super.viewWillAppear(animated)
    if let index = items.firstIndex(of: preSelectedItem) {
        DispatchQueue.main.async {
            self.collectionView.scrollToItem(at: IndexPath(item: index, section: 0), at: .top, animated: false)
        }
    }
}

@Polita的回答是正确的。以下是如何在目标C:中实现您想要的内容

- (void)scrollToBottomWithoutAnimation{
    NSInteger lastVisibleRowIndex = (NSInteger)self.myItems.count - 1;
    NSIndexPath *lastVisibleIndexPath = [NSIndexPath indexPathForRow: lastVisibleRowIndex inSection:0];
    [self.collectionView scrollToItemAtIndexPath:lastVisibleIndexPath atScrollPosition: UICollectionViewScrollPositionCenteredVertically animated:NO];
}

在您的视图中WillAppear方法:

dispatch_async(dispatch_get_main_queue(), ^{
    [self scrollToBottomWithoutAnimation];
});

在调用scrollToBottomWithoutAnimation 之前需要调用[self.view layoutIfNeeded]

相关内容

  • 没有找到相关文章

最新更新