views:

85

answers:

1
controller.modalTransitionStyle = UIViewAnimationTransitionFlipFromLeft;
[self presentModalViewController:controller animated:YES];

Is there any way to make it flipping with a thick border/side? (like iBooks app, when you're switching between books view and the books store)

+2  A: 

The code or API Apple used for this transition is not publicly available, so you would need to implement your own custom OpenGL transition. Lucky for you, someone else had the same idea and implemented a helper class that includes a thick-border flip transition: EPGLTransitionView. If this is not to your liking, check out this SO thread on custom view transitions.

Justin
Perfect! Thank you!
romaonthego