Merge branch 'feature/dev' into 'master'
feat:fix iOS wont use rowSpace when at first line See merge request !33
This commit is contained in:
		| @@ -96,8 +96,10 @@ - (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSInde | |||||||
|     CGFloat width = (self.collectionView.width - self.columnSpace * (self.columnCount - 1)) / self.columnCount; |     CGFloat width = (self.collectionView.width - self.columnSpace * (self.columnCount - 1)) / self.columnCount; | ||||||
|     CGFloat height = [self.delegate doricFlowLayoutItemHeightAtIndexPath:indexPath]; |     CGFloat height = [self.delegate doricFlowLayoutItemHeightAtIndexPath:indexPath]; | ||||||
|     CGFloat x = (width + self.columnSpace) * [minYOfColumn integerValue]; |     CGFloat x = (width + self.columnSpace) * [minYOfColumn integerValue]; | ||||||
|     CGFloat y = self.rowSpace + [self.columnHeightInfo[minYOfColumn] floatValue]; |     CGFloat y = [self.columnHeightInfo[minYOfColumn] floatValue]; | ||||||
| 
 |     if (y > 0) { | ||||||
|  |         y += self.rowSpace; | ||||||
|  |     } | ||||||
|     self.columnHeightInfo[minYOfColumn] = @(y + height); |     self.columnHeightInfo[minYOfColumn] = @(y + height); | ||||||
| 
 | 
 | ||||||
|     UICollectionViewLayoutAttributes *attrs = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath]; |     UICollectionViewLayoutAttributes *attrs = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath]; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user