このコードを使用してViewcontrollerをプッシュします。
if (! self.infoViewController) {
self.infoViewController = [[InfoViewController alloc] initWithNibName:@"InfoViewController" bundle:nil];
}
[UIView animateWithDuration:0.7f
animations:^{
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[self.navigationController pushViewController:self.infoViewController animated:NO];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:self.navigationController.view cache:NO];
}];
ナビゲーションバーのタイトルアニメーションを無効にすることはできますか?アニメーション中は左からスライドします。