2 つの CollectionView Controller を持つビューコントローラーがあります。
コレクション ビューの 1 つだけがカスタム サイズにサイズ変更され、もう 1 つのビューは同じままになるように回転したいと思います。
私は使用しようとしました:
- (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);
}
ただし、それは両方のコレクションビューを変更するだけです。1 つのコレクションだけに限定するにはどうすればよいですか?