我有两个UIViews
VW1 和 VW2 在同一个UIViewController
。我正在尝试从 VW1 向右翻转到 VW2 并使用以下我不知道如何以及在何处调用该方法的代码?
-(void)FlipFromRight
{
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:uiView2 cache:YES];
[UIView commitAnimations];
}
上面的代码对我不起作用。