1

I know there are two ways,

  1. [self.navigationController pushViewController:siteViewController animated:YES];

  2. [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

Ian
  • 501
  • 2
  • 10
  • 20
  • http://stackoverflow.com/questions/6605959/implement-custom-animation-to-present-modal-view-from-specified-view-on-ipad – BBog Jun 20 '12 at 09:32

1 Answers1

1

Check out these similar questions:

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:

enter image description here

You can download it here.

Hope this helps!

Community
  • 1
  • 1
pasawaya
  • 11,515
  • 7
  • 53
  • 92