KRLCollectionViewGridLayout
KRLCollectionViewGridLayout copied to clipboard
Layout of second page is misaligned
Hi,
At first I wanna say thank you for making this, I'm using it to make an 3x3 grid layout with paging enable. But I have a problem when scroll to second page, the layout of this page is not 3x3 anymore. You can see the image about problem here: https://i.stack.imgur.com/nzkPA.png And here is my setting for grid 3x3 layout:
KRLCollectionViewGridLayout *flowLayout = [[KRLCollectionViewGridLayout alloc] init]; flowLayout.scrollDirection = UICollectionViewScrollDirectionHorizontal; flowLayout.aspectRatio = 1; flowLayout.sectionInset = UIEdgeInsetsMake(2, 25, 10, 15); flowLayout.interitemSpacing = 25; flowLayout.lineSpacing = 25; flowLayout.numberOfItemsPerLine = 3;
I have to raise a help in StackOverflow but doesn't receive the solution, can you take a look at this? https://stackoverflow.com/questions/53130283/uicollectionview-contentoffset-wrong-from-second-page
Do you know how to fix it?