I have done one iphone app regarding Flip Horizontal Transition.But i click on button means the total view will be transition.but i want only button transition on the view.please give solution .i use ios sdk5,xcode 4.2.
Asked
Active
Viewed 175 times
1 Answers
0
You can transition one sub view to another as in this example:
[UIView transitionFromView:fromView
toView:toView
duration:0.70
options:UIViewAnimationOptionTransitionFlipFromRight
completion:^(BOOL finished){
....
}];
This will flip the sub view (which can be a button) and replace it with the new one.

tarmes
- 15,366
- 10
- 53
- 87