I know there are two ways,
-
[self.navigationController pushViewController:siteViewController animated:YES];
-
[self presentModalViewController:anotherViewController animated:YES];
However, those ways are too boring. So, what can I do to have more animation? I should add a view from a window? Any example about this?
Thanks
Check out these similar questions:
how to implement an iPhone view transition animation with both flipping and scaling?
Custom transition between two UIViews
Animating View Transitions with Core Animation
Also, here is a very cool library allowing for easy 3D view transitions: http://maniacdev.com/2011/08/open-source-3d-view-transitions-library-including-cloth-and-flip-style-transitions/
————–UPDATE————–
This is also a really neat transitions library called MPFoldTransition that allows for transitions like this:
You can download it here.
Hope this helps!