How to change pop view controller animation on back button ?
Posted
by Aryabhatt
on Stack Overflow
See other posts from Stack Overflow
or by Aryabhatt
Published on 2010-05-31T08:10:19Z
Indexed on
2010/05/31
8:12 UTC
Read the original article
Hit count: 333
Hi all ,
I am pushing my view controller with the following statement :
[[self navigationController] pushViewController:self.customViewController animatedWithTransition:UIViewAnimationTransitionFlipFromLeft];
Now when I am pressing the back button I want to animate it with the uiviewanimationtransitionflipfromright .
like
[self.navigationController popViewControllerAnimatedWithTransition:UIViewAnimationTransitionFlipFromLeft];
How Can I do so ?
Thanks
© Stack Overflow or respective owner