UICollectionView 单元格移动到下一列

UICollectonView cells move to next column

我有一个 UICollectionView,单元格中有一堆小图像。我的问题是单元格水平移动并且会继续向右离开屏幕。当他们从 space.

中 运行 时,我希望他们绕到下一行

现在我正在使用水平流。我搞砸了滚动和其他设置,但我无法让它们移动到下一行。这是它现在的样子的一个例子:

我明白了。我的事情失败了。我有这两个(固定)功能:

- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
    return 1;
}


- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
    return self.imageURLArray.count;
}

函数中的值被翻转,使 numberOfSectionsInCollectionView 等于计数,另一个返回 1。