我有一个包含 StoryboardID 为“PendingToursVC”的 ViewController 的故事板。在我的代码中,我执行以下操作:
@try {
self.pendingToursVC = [storyboard instantiateViewControllerWithIdentifier:@"PendingToursVC"]; <-- app crashes on this line
}
@catch (NSException *exception) {
NSLog(@"exception:\n%@", [exception description]);
}
程序在这一行停止,在崩溃堆栈中,您可以看到抛出了 objc_exception_throw(无论是什么)。
那么,为什么控制台中没有显示异常。这样我不明白这里发生了什么。任何提示如何找出都表示赞赏。