我正在尝试滚动到集合视图中的特定项目,它似乎在大约 90% 的时间里正确发生。我基本上有一个集合视图,我通过自动布局更改其框架,然后我希望我的单元格是所有新框架的大小,所以我设置了一个新大小。当我在 scrollToItemAtIndexPath 上放置一个断点时,似乎它工作时项目大小已经生效,但它不起作用的时候,单元格仍然具有旧大小。如何在滚动之前确保 itemSize 已更改?
[weakSelf.view removeConstraints:@[weakSelf.verticalSpace, weakSelf.collectionViewBottomSpace, weakSelf.bottomLayoutTopCollectionView]];
[weakSelf.view addConstraints:@[weakSelf.collectionViewToTop, weakSelf.imageHeight, weakSelf.youLabelToTop]];
[UIView animateWithDuration:animated ? .5 : 0.0
animations:^{
[weakSelf.view layoutIfNeeded];
}
completion:^(BOOL finished) {
UICollectionViewFlowLayout * layout = (UICollectionViewFlowLayout *)self.currentUserCollectionView.collectionViewLayout;
layout.itemSize = weakSelf.currentUserCollectionView.frame.size;
[weakSelf.currentUserCollectionView scrollToItemAtIndexPath:[NSIndexPath indexPathForRow:[self getSelectedIndex:selectItem] inSection:0]
atScrollPosition:UICollectionViewScrollPositionCenteredHorizontally
animated:NO];
}];