Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using an UICollectionView with UICollectionViewFlowLayout.

I set the size of each cell through the

collectionView:layout:sizeForItemAtIndexPath:

When switching from portrait to landscape, I would like to adjust the size of each cell to completely fit the size of the CollectionView, without leaving padding space between cells.

Questions:

1) How to change the size of a cell after a rotation event?

2) And, event better, how to make the a layout where the cells always fit the entire size of the screen?

Thanks!

share|improve this question

3 Answers

up vote 14 down vote accepted

1) You could maintain and swap out multiple layout objects, but there's a simpler way. Just add the following to your UICollectionViewController subclass and adjust the sizes as required:

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout  *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{    
    // Adjust cell size for orientation
    if (UIDeviceOrientationIsLandscape([[UIApplication sharedApplication] statusBarOrientation])) {
        return CGSizeMake(170.f, 170.f);
    }
    return CGSizeMake(192.f, 192.f);
}

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
{
    [self.collectionView performBatchUpdates:nil completion:nil];
}

Calling -performBatchUpdates:completion: will invalidate the layout and resize the cells with animation (you can just pass nil to both block params if you've no extra adjustments to perform).

2) Instead of hardcoding the item sizes in -collectionView:layout:sizeForItemAtIndexPath, just divide the height or width of the collectionView's bounds by the number of cells you want to fit on screen. Use the height if your collectionView scrolls horizontally or the width if it scrolls vertically.

share|improve this answer
The solution proposed by Fiveagle is working too, but this is the solution I preferred. – Fmessina Dec 11 '12 at 15:31
How do you handle the orientation changing while focus is on another view controller then focus is switched back to the original view controller. Currently my cells retain the size determined by the orientation they were left in but the new orientation. – Steve Moser Jan 25 at 22:14
nm, I just invoked [self.collectionView performBatchUpdates:nil completion:nil]; during viewDidAppear – Steve Moser Jan 25 at 22:15
why not just call [self.collectionView.collectionViewLayout invalidateLayout];? – user102008 May 15 at 0:56
@user102008 Calling invalidateLayout will re-draw the cells with the correct size, but -performBatchUpdates:completion: will animate the changes, which looks a lot nicer IMHO. – followben May 15 at 4:48

I solved using two UICollectionViewFlowLayout. One for portrait and one for landscape. I assign them to my collectionView dinamically in -viewDidLoad

self.portraitLayout = [[UICollectionViewFlowLayout alloc] init];
self.landscapeLayout = [[UICollectionViewFlowLayout alloc] init];

UIInterfaceOrientation orientationOnLunch = [[UIApplication sharedApplication] statusBarOrientation];

if (UIInterfaceOrientationIsPortrait(orientationOnLunch)) {
    [self.menuCollectionView setCollectionViewLayout:self.portraitLayout];
}else{
    [self.menuCollectionView setCollectionViewLayout:self.landscapeLayout];
}

Then I simply modified my collectionViewFlowLayoutDelgate Methods like this

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath{
CGSize returnSize = CGSizeZero;

if (collectionViewLayout == self.portraitLayout) {
    returnSize = CGSizeMake(230.0, 120.0);
}else{
    returnSize = CGSizeMake(315.0, 120.0);
}

return returnSize;

}

Last I switch from a layout to one other on rotation

- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation{
if (UIInterfaceOrientationIsPortrait(fromInterfaceOrientation)) {
    [self.menuCollectionView setCollectionViewLayout:self.landscapeLayout animated:YES];
}else{
    [self.menuCollectionView setCollectionViewLayout:self.portraitLayout animated:YES];
}

}

share|improve this answer
Thanks!! I'll try your solution later and I'll let you know. – Fmessina Nov 28 '12 at 14:15

If you don't want additional animations brought by performBatchUpdates:completion:, just use invalidateLayout to force the collectionViewLayout to reload.

- (void)viewWillLayoutSubviews
{
    [super viewWillLayoutSubviews];
    [self.collectionView.collectionViewLayout invalidateLayout];
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.