Предупреждение в использовании пользовательской коллекции ViewFlowLayot
Я просто изменяю атрибуты в моем flowLayout
-(NSArray *)layoutAttributesForElementsInRect:(CGRect)rect {
NSMutableArray *array = [[super layoutAttributesForElementsInRect:rect] mutableCopy];
for (int i = 0; i< array.count; i++) {
UICollectionViewLayoutAttributes* attributes = array[i];
if (!attributes.representedElementKind) {
array[i] = [self layoutAttributesForItemAtIndexPath:attributes.indexPath];
}
}
return array;
}
- (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath {
UICollectionViewLayoutAttributes *attributes = [super layoutAttributesForItemAtIndexPath:indexPath];
CGFloat midX = self.collectionView.contentOffset.x + self.collectionView.width * 0.5;
CGFloat distance = midX - attributes.center.x;
CGFloat activeDistance = self.collectionView.width - lineSpacing - remainSpacing * 2;
CGFloat normalizedDistance = distance / activeDistance;
attributes.alpha = 1 - (1 - alphaFactor) * ABS(normalizedDistance);
CGFloat zoom = 1 - (1 - scaleFactor) * ABS(normalizedDistance);
attributes.transform3D = CATransform3DMakeScale(1.0, zoom, 1.0);
attributes.zIndex = 1;
return attributes;
}
Вопрос вот так: консольный выход из системы при первом изменении показанной ячейки:
UICollectionViewFlowLayout имеет кешированное несоответствие кадра для пути индекса {длина = 2, путь = 0 - 1} - кэшированное значение: {{350, 15.75}, {265, 283.5}}; ожидаемое значение: {{350, 0}, {265, 315}}
Это, вероятно, происходит, потому что подкласс макета потока MyFlowLayout изменяет атрибуты, возвращенные UICollectionViewFlowLayout, не копируя их
1 ответ
Решение
Сделайте так, чтобы скопировать атрибуты
UICollectionViewLayoutAttributes *attributes = [[super layoutAttributesForItemAtIndexPath:indexPath] copy];
Этот вопрос решен в этой проблеме: Предупреждение: UICollectionViewFlowLayout кэшировал несоответствие фрейма для пути индекса 'abc'