所以我有这个非常简单的代码。
//Push the uiviewcontroller of the juice
JuiceViewController *viewController = [[JuiceViewController alloc] initWithNibName:@"JuiceViewController" bundle:nil];
//Set the object tot os displaying
viewController.mProductRef=juice;
//Push the view controller
[navController pushViewController:viewController animated:YES];
它可以在90%的时间内工作,另外10%的屏幕会冻结,但应用程序不会崩溃。导航确实发生了它只是冻结的动画。
我知道这一点,因为如果我进行侧滑动以返回屏幕弹回到正确的形式。
就像我说的那样,90%的时间它会达到我的预期,但有时会冻结。
我以前从未在任何项目中见过这个。有谁知道这可能是什么?
先谢谢了。