Today I updated Xcode to 11.2. Since then the app crashes with Exception Type: EXC_CRASH (SIGABRT). The app crashes only when run with Xcode on a real device. If installed with TestFlight it does not crash. If run on simulator it also doesn't crash.
It crashes after the following code:
[self performSegueWithIdentifier:@"SegueName" sender:nil];
The new UIViewController
is never shown.
What I tried so far:
- Recreated the segue
- Dispatched the line on the main queue
- There is one outlet and one action - both are connected to the correct
UIViewController
Neither of the above helped. Any ideas? Any help is appreciated.