UIView flip from top
How to flip a UIView from top/bottom using UIViewAnimation ? Does anyone h开发者_JAVA百科ave any idea about how this can be accomplished?
Try This
[UIView transitionFromView:ViewA toView:ViewB
duration:1.0
options:UIViewAnimationOptionTransitionFlipFromTop
completion:NULL];
精彩评论