非常奇怪的崩溃报告,我无法重现segues

时间:2013-08-11 11:37:38

标签: ios ios6

我在Crashlytics中遇到此错误:

Fatal Exception NSGenericException
Could not find a navigation controller for segue 'PlanToBusiness'. Push segues can only be used when the source controller is managed by an instance of UINavigationController.

我只在应用程序中的某个位置使用了segue。以下是它的代码。

- (void)performPlanToBusinessSegueOnMainThread
{
    [spinner stopAnimating];
    [self performSegueWithIdentifier:@"PlanToBusiness" sender:self];
}

每当我尝试使用应用程序的该区域时,它都有效。并且错误本身似乎只发生在5%的用户身上。有谁知道这可能是什么原因?我正在使用故事板。

谢谢!

1 个答案:

答案 0 :(得分:1)

您需要将视图控制器嵌入到UINavigationController Example