我需要推視圖控制器到另一個視圖控制器。推動ViewController與模態動畫(水平翻轉)
menuVC -> VC1 ->VC2
打算從menuVC到VC1不需要動畫,但會從VC1 VC2到從VC2 VC1到需要發生翻轉animaton。
但是,從VC2到menuVC時,不需要動畫。
我使用下面的代碼:
(從how to push a viewController with flip animation)
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1];
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.view cache:YES];
FlashCardVC *flashCardVC = [[FlashCardVC alloc] init];
[self.navigationController pushViewController:flashCardVC animated:NO];
[UIView commitAnimations];
,屏幕會完全空白,當我嘗試做以上。
出了什麼問題?
關於如何更新iOS 8風格轉換的答案的任何想法? – SleepsOnNewspapers 2015-01-31 04:01:33
@ hsavit1,你問的是什麼樣的iOS 8樣式轉換? – rdelmar 2015-01-31 06:15:05