KTCenterFlowLayout
KTCenterFlowLayout copied to clipboard
Aligns collection view cells to the center of the screen.
It is centring cells horizontally, but not vertically.
let layout = KTCenterFlowLayout() layout.minimumInteritemSpacing = 10.0 layout.minimumLineSpacing = 10.0 UICollectionViewController(collectionViewLayout: layout) I added ^ in view did load where my collection view data is set, but nothing is changing,...
The standard UICollectionViewFlowLayout supports the use of negative minimumLineSpacing to allow overlapping rows. KTCenterFlowLayout uses some internal rectangle intersection logic that prevents detection of overlapping rows and considers all items...