- ios 14 定位滚动无效
[_collection scrollToItemAtIndexPath:indexPathTo atScrollPosition:UICollectionViewScrollPositionCenteredHorizontally animated:YES];
- 修改成
UICollectionViewLayoutAttributes *attributes = [_collection layoutAttributesForItemAtIndexPath:indexPathTo];
[_collection setContentOffset:attributes.frame.origin animated:NO];///fix:ios 14 不会滚动问题
网友评论