我是 iPhone 开发者的新手,
单击按钮时,我想使用此动画导航到新页面,UIViewAnimationTransitionFlipFromLeft
我该怎么做?
-(void)btnClick{
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.7];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.view cache:NO];
[UIView commitAnimations];
}
当我点击 btn 动画发生但我无法导航到新页面。
任何帮助将不胜感激!