Custom UICollectionViewLayout to create a slick vertical sliding effect.
There is a sample Xcode project available with two examples. Just Build & Run. To use the Custom layout in your projects just includes the AWCollectionViewSlidingDoorLayout.h and AWCollectionViewSlidingDoorLayout.m classes.
Import the Custom CollectionViewLayout
#import "AWCollectionViewSlidingDoorLayout.h"
Create a new instance of the CollectionViewLayout and assign it to your collectionview
AWCollectionViewSlidingDoorLayout *slidingLayout = [[AWCollectionViewSlidingDoorLayout alloc] initWithMaxRatio:1.5 andMinRatio:6];
[collectionView setCollectionViewLayout:slidingLayout];
You will need to define ratio (width/height) values for active and inactive states. MaxRatio is the ratio of your active Cell and MinRatio the ratio of the inactive cells.
If you want to add custom animations to your UICollectionViewCell subviews overwrite the layoutSubviewsWithAttributes delegate and refer to the following code snippet
-(void)layoutSubviewsWithAttributes:(NSMutableArray *)theAttributes{
for(int i = 0; i < theAttributes.count; i++){
GalleryCell *cell = (GalleryCell*)[collectionView cellForItemAtIndexPath:[NSIndexPath indexPathForRow:i inSection:0]];
CGFloat maxHeight = self.collectionView.bounds.size.width / maxRatio;
CGFloat minHeight = self.collectionView.bounds.size.width / minRatio;
CGFloat cellHeight = (maxHeight*0.5 + minHeight*0.5);
CGFloat currentIndex = self.collectionView.contentOffset.y / cellHeight;
CGFloat ratio = cell.bounds.size.width / cell.bounds.size.height;
CGFloat maxDiff = minRatio - maxRatio;
CGFloat diff = minRatio - ratio;
CGFloat alpha = diff/maxDiff;
//FADE-OUT THE BLACK OVERLAY WHEN THE CELL BECOMES ACTIVE
cell.overlayView.alpha = 1 - alpha;
//FADE-IN THE TITLE WHEN THE CELL BECOMES ACTIVE
cell.titleLabel.alpha = alpha;
//ANIMATE THE SUBVIEW WHEN THE CELL BECOMES ACTIVE
if(i > currentIndex){
cell.titleLabel.transform = CGAffineTransformMakeScale(1 - (1- alpha) * 0.3, 1 - (1- alpha) * 0.3);
cell.subtitleLabel.transform = CGAffineTransformMakeTranslation(0, (1- alpha) * 30);
}else{
cell.titleLabel.transform = CGAffineTransformIdentity;
cell.subtitleLabel.transform = CGAffineTransformIdentity;
}
}
}
- Use AutoLayout when setting up your UICollectionViewCell nib to achieve the resize effect you want.
- Play aroud with the UIImageView ContentMode and the UILabel minimum scale
- Make sure your MaxRatio is bigger than your Images ratio to avoid a sudden jump during the resizing of the Cell