AutomaticSize


- (UICollectionViewLayoutAttributes *)preferredLayoutAttributesFittingAttributes:(UICollectionViewLayoutAttributes *)layoutAttributes {
[self setNeedsLayout];
[self layoutIfNeeded];

CGSize size = [self systemLayoutSizeFittingSize:layoutAttributes.frame.size];
CGRect frame = layoutAttributes.frame;
frame.size.width = size.width;
layoutAttributes.frame = frame;

return layoutAttributes;
}

Leave a Reply

Your email address will not be published. Required fields are marked *