2

我在 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% 的用户身上。有谁知道这可能是什么原因?我正在使用故事板。

谢谢!

4

1 回答 1

1

您需要将视图控制器嵌入 UINavigationController例子

于 2013-08-11T11:57:42.253 回答