1
#pragma mark Rotation handling methods

-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:
(NSTimeInterval)duration {
NSLog(@"IS ROTATING");
// Fade the collectionView out
[self.collectionView setAlpha:0.0f];

// Suppress the layout errors by invalidating the layout
[self.collectionView.collectionViewLayout invalidateLayout];

// Calculate the index of the item that the collectionView is currently displaying
CGPoint currentOffset = [self.collectionView contentOffset];
self.currentIndex = currentOffset.x / self.collectionView.frame.size.width;
}

- (void)viewWillLayoutSubviews;
{
[super viewWillLayoutSubviews];
UICollectionViewFlowLayout *flowLayout = (id)self.collectionView.collectionViewLayout;

if (UIDeviceOrientationIsLandscape([[UIApplication sharedApplication] statusBarOrientation])) {
    flowLayout.itemSize = CGSizeMake(self.view.bounds.size.width, self.view.bounds.size.height);
} else {
    flowLayout.itemSize = CGSizeMake(self.view.bounds.size.width, self.view.bounds.size.height);
}

[flowLayout invalidateLayout]; //force the elements to get laid out again with the new size
}


-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {

// Force realignment of cell being displayed
CGSize currentSize = self.view.bounds.size;
float offset = self.currentIndex * currentSize.width;
[self.collectionView setContentOffset:CGPointMake(offset, 0)];


NSLog(@"CURRENT bounds: %f",self.view.bounds.size.width);
NSIndexPath *indexPath = [NSIndexPath indexPathForItem:self.currentIndex inSection:0];
[self.collectionView scrollToItemAtIndexPath:indexPath atScrollPosition:UICollectionViewScrollPositionLeft animated:NO];


// Fade the collectionView back in
[UIView animateWithDuration:0.125f animations:^{
    [self.collectionView setAlpha:1.0f];
}];


}

这是代码。我只希望图像保持全屏并且集合视图符合纵向。我可以看到单元格正在尝试调整,但集合视图本身没有调整大小。有什么建议/修复吗?

4

1 回答 1

1

你在哪里设置collectionView的新框架?您应该将其设置为willAnimateRotationToInterfaceOrientation: duration:或者didRotateFromInterfaceOrientation:如果它等于超级视图的大小,则将调整大小的掩码设置为灵活的宽度或高度。

_collectionView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;

viewWillLayoutSubviews您将 itemSize 设置为横向和纵向相同时,这是有意的吗?

于 2014-04-04T14:27:44.410 回答