Parallax is an iOS library that reproduces the parallax effect of the iOS7 home screen.
- QuartzCore
- CoreMotion
- Add the Parallax directory into your project.
- Add
#import "ACParallax.h"
to your view controller. - Add a ACParallax view and start the parallax effect with
parallaxView.parallax = YES;
Optional:
If you want a delegate to be notified of begin/end parallax effect and changes in the motion attitude:
parallaxView.parallaxDelegate = self;
- Some implementations details missing