In a CollectionView
, some cells should have an additional subview or layer. The CollectionView
can be told to resize it's cells, thus all content needs to resize appropriately.
Currently, the cell is initialized from a nib containing a cell with imageview; the cell nib is linked to a custom UICollectionViewCell
subclass, that only does the init. Autoresize subviews is checked.
The CollectionView
is told to resize the cell by a value derived and returned in sizeForItemAtIndexPath:
. I have subclassed a FlowLayout but it only specifies ScrollDirection
and Insets
.
All of that is working fine. Problem: How do I add subview/layer to the cell so it also resizes correctly? I tried adding subviews and layers with translatesAutoresizingMaskIntoConstraints
off, but these do not automatically change size at all. Also tried to use code frame/view instead of nib.
The best I got now is a cell.contentView.layer
sublayer which I add in cellForItemAtIndexPath:
; that is "manually" resized by storing the cell's frame.size
from sizeForItemAtIndexPath:
, which is not only ugly but also ends up with the sublayer having various sizes for different cells.
Any help appreciated!
@Alfie Hanssen solution (here) didn't work properly for me, according with this article:
I have inspected the UICollectionViewCell and I found that there is a view between the cell and the contentView, and that view has intrinsic width and height constraints. Instead of the AutoresizingMask I'm just updating as below and seems working for me.
I had the same problem. Switching between two layouts did not resize the Pictures (UIImage) inside my cells. My Cells where build without a xib. And I used two different cell classes for each CollectionViewCustomLayout.
I fixed this programatically with this:
in my UICollectionViewCell subclasses.
But this only worked for me by adding the Picture as a cells backgroundpicture like this:
As an alternative to enabling AutoResizingMask, for custom UICollectionViewLayouts that have variable height for example where you are setting some constraints manually and need translatesAutoresizingMaskIntoConstraints to remain NO, you can add the following to layoutSubviews in the cell:
This worked to fix all of my custom collection view layouts that had problens with Xcode 6.
The solution was to turn off AutoConstraints for the cell xib and activate the flexible width/height arrows in the AutoResize for the imageviews.
I'm adding subView and constraint programmatically, the following code works for me:
In another project without xibs i subclassed UICollectionViewCell and did this for the same effect: