Texture icon indicating copy to clipboard operation
Texture copied to clipboard

Texture doesn't support custom UICollectionViewLayout.

Open ekazaev opened this issue 5 years ago • 1 comments

Texture doesnt support custom UICollectionViewLayout as it is hardcoded to support only UICollectionViewFlowLayout.

ASCollectionViewProxy intercepts the selector collectionView:layout:sizeForItemAtIndexPath: and propagates the values directly to the UICollectionViewFlowLayout in the prepare method. If any other layout has a different method signature or a different ways of setting the item sizes, ASCollectionView stops to work. https://developer.apple.com/documentation/uikit/uicollectionviewdelegateflowlayout/1617708-collectionview

The second issue is that _ASCollectionViewCell does not implement preferredLayoutAttributesFitting so it does not propagate the desired size in a way that is natural for the UICollectionViewLayout after it was calculated. That must be fixed to support any other custom UICollectionViewLayout.

Please see the example project. Just uncomment one or another solution in TextureController.swift TestTexture.zip

ekazaev avatar Jan 29 '21 13:01 ekazaev

Didn't know much about this, maybe you can take a look at ASCollectionViewLayoutInspecting?

jeffersonsetiawan avatar Sep 21 '21 04:09 jeffersonsetiawan