小さいセルと大きいセルの垂直方向の間隔が同じになるように、フロー レイアウトを変更する方法 (例: 行の高さが固定されていない/行の高さが最大サイズに固定されていない)。
こう見えたい
小さいセルと大きいセルの垂直方向の間隔が同じになるように、フロー レイアウトを変更する方法 (例: 行の高さが固定されていない/行の高さが最大サイズに固定されていない)。
こう見えたい
The solution was using UICollectionViewWaterfallLayout
Follow the setup from the website, and you can setup it like this
- (void)viewDidLoad
{
[super viewDidLoad];
UICollectionViewWaterfallLayout * layout = (UICollectionViewWaterfallLayout *)self.collectionView.collectionViewLayout;
layout.delegate = self;
layout.columnCount = 2;
layout.itemWidth = 150.f;
layout.sectionInset = UIEdgeInsetsZero;
...
}