2010-03-08 156 views

回答

5

只有这样我发现是禁用内置的过渡动画,并使用自己的。我使用的东西像一个UINavigationController如下:

UIViewAnimationTransition trans = UIViewAnimationTransitionCurlUp; 
[UIView beginAnimations: nil context: nil]; 
[UIView setAnimationDuration:0.5]; 
[UIView setAnimationTransition: trans forView: [delegate window] cache: YES]; 
[navController pushViewController:detailController animated:NO]; 
[UIView commitAnimations]; 
+0

+1不错的解决方法。 – kennytm 2010-03-08 21:10:30