One thing I found is that you have "hidden" built in transitions between views when you push them upon the navigationcontroller.
[self.navigationController pushViewController:viewController transition:6];
Some of the numbers I know is:
- 1: the bar and the view goes to the left
- 2: the bar goes to the left and the content to the right
- 3: both goes to the right (similar to the normal animation)
- 6: Fade
- 10: Some kind of crazy flip
No idea how many it is but it's worth looking in to if you want something different for free!