105

每当 UICollectionView 完全加载时,我都必须进行一些操作,即那时应该调用所有 UICollectionView 的数据源/布局方法。我怎么知道??是否有任何委托方法可以知道 UICollectionView 加载状态?

4

21 回答 21

169

这对我有用:

[self.collectionView reloadData];
[self.collectionView performBatchUpdates:^{}
                              completion:^(BOOL finished) {
                                  /// collection-view finished reload
                              }];

斯威夫特 4 语法:

collectionView.reloadData()
collectionView.performBatchUpdates(nil, completion: {
    (result) in
    // ready
})
于 2015-06-05T14:02:06.327 回答
63
// In viewDidLoad
[self.collectionView addObserver:self forKeyPath:@"contentSize" options:NSKeyValueObservingOptionOld context:NULL];

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary  *)change context:(void *)context
{
    // You will get here when the reloadData finished 
}

- (void)dealloc
{
    [self.collectionView removeObserver:self forKeyPath:@"contentSize" context:NULL];
}
于 2014-10-24T02:02:24.483 回答
30

这实际上非常简单。

例如,当您调用 UICollectionView 的 reloadData 方法或它的布局的 invalidateLayout 方法时,您可以执行以下操作:

dispatch_async(dispatch_get_main_queue(), ^{
    [self.collectionView reloadData];
});

dispatch_async(dispatch_get_main_queue(), ^{
    //your stuff happens here
    //after the reloadData/invalidateLayout finishes executing
});

为什么这样有效:

主线程(我们应该在其中进行所有 UI 更新)包含主队列,它本质上是串行的,即它以 FIFO 方式工作。所以在上面的例子中,第一个块被调用,我们的reloadData方法被调用,然后是第二个块中的任何其他内容。

现在主线程也被阻塞了。因此,如果您reloadData需要 3 秒来执行,则第二个块的处理将被那些 3 秒延迟。

于 2013-12-19T13:39:34.860 回答
13

只是为了添加一个很棒的@dezinezync 答案:

斯威夫特 3+

collectionView.collectionViewLayout.invalidateLayout() // or reloadData()
DispatchQueue.main.async {
    // your stuff here executing after collectionView has been layouted
}
于 2017-09-22T18:43:43.997 回答
7

使用 RxSwift/RxCocoa 的另一种方法:

        collectionView.rx.observe(CGSize.self, "contentSize")
            .subscribe(onNext: { size in
                print(size as Any)
            })
            .disposed(by: disposeBag)
于 2019-01-02T09:28:27.750 回答
6

像这样做:

       UIView.animateWithDuration(0.0, animations: { [weak self] in
                guard let strongSelf = self else { return }

                strongSelf.collectionView.reloadData()

            }, completion: { [weak self] (finished) in
                guard let strongSelf = self else { return }

                // Do whatever is needed, reload is finished here
                // e.g. scrollToItemAtIndexPath
                let newIndexPath = NSIndexPath(forItem: 1, inSection: 0)
                strongSelf.collectionView.scrollToItemAtIndexPath(newIndexPath, atScrollPosition: UICollectionViewScrollPosition.Left, animated: false)
        })
于 2016-09-10T11:03:52.967 回答
4

尝试在 reloadData() 调用之后立即通过 layoutIfNeeded() 强制同步布局传递。似乎适用于 iOS 12 上的 UICollectionView 和 UITableView。

collectionView.reloadData()
collectionView.layoutIfNeeded() 

// cellForItem/sizeForItem calls should be complete
completion?()
于 2019-03-01T22:31:28.507 回答
4

正如dezinezync回答的那样,您需要在reloadDataa UITableViewor之后向主队列分派一段代码UICollectionView,然后在单元格出列后执行该代码块

为了在使用时更直接,我会使用这样的扩展:

extension UICollectionView {
    func reloadData(_ completion: @escaping () -> Void) {
        reloadData()
        DispatchQueue.main.async { completion() }
    }
}

它也可以实现UITableView

于 2018-11-02T22:34:02.623 回答
3

斯威夫特 5

override func viewDidLoad() {
    super.viewDidLoad()
    
    // "collectionViewDidLoad" for transitioning from product's cartView to it's cell in that view
    self.collectionView?.addObserver(self, forKeyPath: "contentSize", options: NSKeyValueObservingOptions.new, context: nil)
}

override func observeValue(forKeyPath keyPath: String?, of object: Any?, change: [NSKeyValueChangeKey : Any]?, context: UnsafeMutableRawPointer?) {
    if let observedObject = object as? UICollectionView, observedObject == self.collectionView {
        print("collectionViewDidLoad")
        self.collectionView?.removeObserver(self, forKeyPath: "contentSize")
    }
}
于 2020-12-04T11:55:18.883 回答
3

在重新加载集合视图后,我只是执行了以下操作。您甚至可以在 API 响应中使用此代码。

self.collectionView.reloadData()

DispatchQueue.main.async {
   // Do Task after collection view is reloaded                
}
于 2020-02-04T09:53:32.953 回答
3

到目前为止,我发现的最佳解决方案是使用CATransaction以处理完成。

斯威夫特 5

CATransaction.begin()
CATransaction.setCompletionBlock {
    // UICollectionView is ready
}

collectionView.reloadData()

CATransaction.commit()

更新:上述解决方案似乎在某些情况下有效,而在某些情况下则无效。我最终使用了公认的答案,这绝对是最稳定和经过验证的方法。这是 Swift 5 版本:

private var contentSizeObservation: NSKeyValueObservation?
contentSizeObservation = collectionView.observe(\.contentSize) { [weak self] _, _ in
      self?.contentSizeObservation = nil
      completion()
}

collectionView.reloadData()
于 2020-07-16T07:32:45.237 回答
1

这对我有用:

__weak typeof(self) wself= self;
[self.contentCollectionView performBatchUpdates:^{
    [wself.contentCollectionView reloadData];
} completion:^(BOOL finished) {
    [wself pageViewCurrentIndexDidChanged:self.contentCollectionView];
}];
于 2016-01-12T03:18:06.797 回答
1

只需在批量更新中重新加载collectionView,然后在布尔“完成”的帮助下检查完成块是否完成。

self.collectionView.performBatchUpdates({
        self.collectionView.reloadData()
    }) { (finish) in
        if finish{
            // Do your stuff here!
        }
    }
于 2019-12-06T18:54:54.783 回答
1

当集合视图在用户可见之前加载时,我需要对所有可见单元格执行一些操作,我使用了:

public func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
    if shouldPerformBatch {
        self.collectionView.performBatchUpdates(nil) { completed in
            self.modifyVisibleCells()
        }
    }
}

请注意,这将在滚动浏览集合视图时被调用,因此为了防止这种开销,我添加了:

private var souldPerformAction: Bool = true

在行动本身:

private func modifyVisibleCells() {
    if self.shouldPerformAction {
        // perform action
        ...
        ...
    }
    self.shouldPerformAction = false
}

该动作仍将执行多次,作为初始状态下可见单元格的数量。但是在所有这些调用中,您将拥有相同数量的可见单元格(全部)。并且布尔标志将阻止它在用户开始与集合视图交互后再次运行。

于 2018-05-06T13:15:00.950 回答
0

由于UICollectionView.

一个可靠的解决方案是子类UICollectionView化以在layoutSubviews().

Objectice-C 中的代码: https ://stackoverflow.com/a/39648633

Swift 中的代码: https ://stackoverflow.com/a/39798079

于 2021-06-09T09:08:38.313 回答
0

定义这样做:

//Subclass UICollectionView
class MyCollectionView: UICollectionView {

    //Store a completion block as a property
    var completion: (() -> Void)?

    //Make a custom funciton to reload data with a completion handle
    func reloadData(completion: @escaping() -> Void) {
        //Set the completion handle to the stored property
        self.completion = completion
        //Call super
        super.reloadData()
    }

    //Override layoutSubviews
    override func layoutSubviews() {
        //Call super
        super.layoutSubviews()
        //Call the completion
        self.completion?()
        //Set the completion to nil so it is reset and doesn't keep gettign called
        self.completion = nil
    }

}

然后在你的VC里面这样调用

let collection = MyCollectionView()

self.collection.reloadData(completion: {

})

确保您使用的是子类!

于 2018-01-17T23:02:37.123 回答
0

这对我有用:


- (void)viewDidLoad {
    [super viewDidLoad];

    int ScrollToIndex = 4;

    [self.UICollectionView performBatchUpdates:^{}
                                    completion:^(BOOL finished) {
                                             NSIndexPath *indexPath = [NSIndexPath indexPathForItem:ScrollToIndex inSection:0];
                                             [self.UICollectionView scrollToItemAtIndexPath:indexPath atScrollPosition:UICollectionViewScrollPositionCenteredHorizontally animated:NO];
                                  }];

}

于 2019-01-23T08:16:19.993 回答
0

以下是唯一对我有用的方法。

extension UICollectionView {
    func reloadData(_ completion: (() -> Void)? = nil) {
        reloadData()
        guard let completion = completion else { return }
        layoutIfNeeded()
        completion()
    }
}
于 2020-08-16T07:07:55.307 回答
-1

这就是我用 Swift 3.0 解决问题的方法:

override func viewDidAppear(_ animated: Bool) {
    super.viewDidAppear(animated)

    if !self.collectionView.visibleCells.isEmpty {
        // stuff
    }
}
于 2017-02-16T10:04:41.913 回答
-9

尝试这个:

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
    return _Items.count;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    UICollectionViewCell *cell;
    //Some cell stuff here...

    if(indexPath.row == _Items.count-1){
       //THIS IS THE LAST CELL, SO TABLE IS LOADED! DO STUFF!
    }

    return cell;
}
于 2013-11-07T04:43:41.133 回答
-10

你可以这样做...

  - (void)reloadMyCollectionView{

       [myCollectionView reload];
       [self performSelector:@selector(myStuff) withObject:nil afterDelay:0.0];

   }

  - (void)myStuff{
     // Do your stuff here. This will method will get called once your collection view get loaded.

    }
于 2013-04-09T07:19:01.647 回答