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.
そのセグエはアプリ内の 1 か所にしかありません。そして、これがそのコードです。
- (void)performPlanToBusinessSegueOnMainThread
{
[spinner stopAnimating];
[self performSegueWithIdentifier:@"PlanToBusiness" sender:self];
}
アプリのその領域を使用しようとするたびに、機能します。また、エラー自体は 5% のユーザーにしか発生していないようです。誰がこれの原因を知っていますか?ストーリーボードを使用しています。
ありがとう!