views:

27

answers:

1

Any new idea's about Transition effect of UIView

THanks in advance rather than the existing one's

A: 

Ttry this code It will work...

CGContextRef context = UIGraphicsGetCurrentContext();
[UIView beginAnimations:nil context:context];
[UIView setAnimationTransition: UIViewAnimationTransitionFlipFromLeft forView:self.view.window cache:NO];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationDuration:1.0];
[UIView commitAnimations];
[self.navigationController pushToViewController:objNextClass animated:YES];

Happy coding...

Suriya