UINavigationController でカスタム トランジションを作成しました。使用したコードは次のとおりです。
SecondView *newView = [[SecondView alloc] initWithNibName:nil bundle:nil];
[UIView beginAnimtaions:nil context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown];
[self.navigationcontroller pushViewController:newView animated:NO];
[UIView commitAntimations];
[newView release];
ただ、その遷移アニメーションはForwardにしか適用されないのですが、Backに適用できますか?
ありがとう