I am guessing you are using the built in Flow Layout.
However, for your case, you should make a custom UICollectionView Layout.
Make it subclass of UICollectionViewFlowLayout and add this code in the init method:
- (id)init {
if ((self = [super init])) {
self.scrollDirection = UICollectionViewScrollDirectionHorizontal;
self.minimumLineSpacing = 10000.0f;
}
return self;
}
The minimumLineSpacing is the key to making it have one line here.
I hope this helps!