I have a view (View X) in a View Controller and on completion of some task I want to flip that view and show a image view on that location along with flip animation. I am using this code right now but this animates the whole view controller.
[UIView transitionFromView:_viewVerification // view to hide
toView:_imageviewDone // image to display
duration:0.5
options:UIViewAnimationOptionTransitionFlipFromRight
completion:nil];
Any idea how can i implement this thing?
Thanks.