I have 4 subviews of type UIView which is added in main view. I want to flip these views with smooth flip animation. I have tried but not able to successfully able to complete it. here is the code I have used.
[UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:0.5]; [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:signUpView cache:YES]; [UIView commitAnimations];
it flips the half and promptly displays the other view. let me know how to this?