ios collectionview 定位滚动无效2024-02
2024-02-22 本文已影响0人
iOS打怪升级
- ios 14 定位滚动无效
[_collection scrollToItemAtIndexPath:indexPathTo atScrollPosition:UICollectionViewScrollPositionCenteredHorizontally animated:YES];
- 修改成
UICollectionViewLayoutAttributes *attributes = [_collection layoutAttributesForItemAtIndexPath:indexPathTo];
[_collection setContentOffset:attributes.frame.origin animated:NO];///fix:ios 14 不会滚动问题