フリップトランジションフリップトランジションフリップトランジションのためにこのコードを使用しています。
MyViewController *viewController = [[MyViewController alloc] init];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:self.navigationController.view cache:YES];
[self.navigationController pushViewController:viewController animated:NO];
[UIView commitAnimations];
[viewController release];
右からフリップする代わりに、上から反転します。私のアプリケーションは風景モードでのみ動作します。
助けてください。
私はhaventこの質問を投稿しても、私はこれが完全にbizzare – ingsaurabh