Here
CATransition *animation = [CATransition animation]; [[self navigationController] pushViewController:elementController animated:NO]; [animation setDuration:0.45]; [animation setType:kCATransitionPush]; [animation setSubtype:kCATransitionFromLeft]; [animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionDefault]]; [[elementController.view layer] addAnimation:animation forKey:@"SwitchToView1"];
For this you need #import <QuartzCore/QuartzCore.h>
source share