MJParallaxCollectionView
MJParallaxCollectionView copied to clipboard
This is a parallax for the cells inside UICollectionView. It gives us an effect just like scrolling the images in Whatsapp or scrolling through the Weather app for iOS
I can't seem to get it working. I tried this: ``` UICollectionViewFlowLayout *layout=[[UICollectionViewFlowLayout alloc] init]; parallaxCollectionView=[[UICollectionView alloc] initWithFrame:r collectionViewLayout:layout]; parallaxCollectionView.delegate=self; parallaxCollectionView.dataSource=self; [parallaxCollectionView registerClass:[MJCollectionViewCell class] forCellWithReuseIdentifier:@"MJCell"]; [self.view addSubview:parallaxCollectionView]; ```
Added support for iPhone 6, 6 Plus, 6s, 6s plus
Hi Mayuur, The effect MJParallaxCollectionView is amazing and elegant. Like it very much; thus, I did some simplified modification and make image loading asynchronously. Just guess you would probably like...
Can you add cocoapods supported?