У меня проблемы с методом scrollToItem(at:at:animated:)
в моем collectionView.При прокрутке к последнему элементу создается впечатление, что collectionView прокручивается вне поля зрения.Когда я пытаюсь прокрутить вверх после этого, то collectionView находится внизу.
NSInteger section = [self numberOfSectionsInCollectionView:collectionView] - 1;
NSInteger item = [self collectionView:collectionView numberOfItemsInSection:section] - 1;
NSIndexPath *lastIndexPath = [NSIndexPath indexPathForItem:item inSection:section];
[collectionView scrollToItemAtIndexPath:lastIndexPath atScrollPosition:UICollectionViewScrollPositionBottom animated:YES];
Пример видео