MJParallaxCollectionView icon indicating copy to clipboard operation
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

Results 4 MJParallaxCollectionView issues
Sort by recently updated
recently updated
newest added

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?