iPhone SDK:导航导致崩溃

时间:2009-11-05 22:08:01

标签: iphone

当我在应用程序中导航两个视图控制器时,我的应用程序崩溃了。例如,如果我执行此序列:

RootController ViewControllerA
ViewControllerB ViewControllerA

我的应用崩溃了。

在ViewControllerB中按下后退按钮时崩溃了。所以,好像是推出两个或更多ViewControllers。每个人都自己工作。

我不知道为什么。

This is the code I am using to invoke new views.

    salesViewController *anotherViewController = [[salesViewController alloc] initWithNibName:@"salesView" bundle:nil];
    //confirmViewController *anotherViewController = [[confirmViewController alloc] initWithNibName:@"confirmView" bundle:nil];

    [self.navigationController pushViewController:anotherViewController animated:YES];
    [anotherViewController release];

提前致谢。

1 个答案:

答案 0 :(得分:0)

好消息是您创建新视图的代码很好。坏消息是它在其他地方。我在网上发现this conversation似乎是一个类似的问题。