我在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.

我在应用程序中只有一个位置拥有该序列。这是它的代码。
- (void)performPlanToBusinessSegueOnMainThread
{
    [spinner stopAnimating];
    [self performSegueWithIdentifier:@"PlanToBusiness" sender:self];
}

每当我尝试使用该应用程序的那个区域时,它都起作用。而且错误本身似乎仅发生在5%的用户中。有人知道这可能是什么原因吗?我正在使用情节提要。

谢谢!

最佳答案

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

09-25 19:20