I have a collection view with varied item sizes which i declare in
- (CGSize)collectionView:(UICollectionView *)collectionView
layout:(UIColle
You need to Override this function in custom layout class. if you are using custom layout.
override func shouldInvalidateLayoutForBoundsChange(newBounds: CGRect) -> Bool {
return true
}
It seems that collectionView:layout:sizeForItemAtIndexPath:
is called once on layout preparation, before CollectionView is rendered.
So whenever you scroll and a cell is dequeued it is resized to the size provided by collectionView:layout:sizeForItemAtIndexPath:
at preparation stage. Are you expecting this method to be called whenever a cell with certain indexPath gets visible? So that you can dynamically change cell size? seems this is not how this method can be used, it can be used to determine the size of a cell once at layout preparation stage.
In case you need the sizes to be recomputed for some reason, you can invalidate the layout using [UICollectionViewLayout invalidateLayout]
.
A collection view seems to recompute items less often than a UITableView
. You have to inform the collection view about most of the changes to the underlying model, e.g. by calling [collectionView reloadData]
or [collectionView insertItemsAtIndexPaths:indexPaths]
.
You can simple override the scroll view delegate
func scrollViewDidScroll(_ scrollView: UIScrollView) {
collectionView.collectionViewLayout.invalidateLayout()
}