Open ianiv opened 8 years ago
Changing MBContactCollectionViewFlowLayout.m:21 from
NSArray* attributesToReturn = [super layoutAttributesForElementsInRect:rect];
to
NSArray* attributesToReturn = [[NSArray alloc] initWithArray:[super layoutAttributesForElementsInRect:rect] copyItems:YES];
and
MBContactCollectionViewFlowLayout.m:37 from
UICollectionViewLayoutAttributes* currentItemAttributes = [super layoutAttributesForItemAtIndexPath:indexPath];
to
UICollectionViewLayoutAttributes* currentItemAttributes = [[super layoutAttributesForItemAtIndexPath:indexPath] copy];
fixes the warnings for me.
The first time a letter is typed, the following warning is printed to the console:
Making a copy of the attributes returned by
layoutAttributesForElementsInRect
andlayoutAttributesForItemAtIndexPath
solves the problem.