1

小さいセルと大きいセルの垂直方向の間隔が同じになるように、フロー レイアウトを変更する方法 (例: 行の高さが固定されていない/行の高さが最大サイズに固定されていない)。

ここに画像の説明を入力

こう見えたい

ここに画像の説明を入力

4

1 に答える 1

0

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;

    ...
}
于 2013-06-11T16:47:12.260 に答える