我的程序是必须多次推送和弹出多个视图控制器的程序。一段时间后,应用程序停止运行,似乎崩溃了。如果它崩溃,那么这次崩溃在Crashlytics上也是无法检测到的。虽然调试它运行良好一段时间,但经过多次,它说'失去了与iPhone的连接'。这是在iPhone 4s上测试的。每次发生这种情况时,应用程序都停在此行代码中,尽管它在此之前可以运行多次:
ManifestDocumentViewController *manifestVC = (ManifestDocumentViewController *)[self.storyboard instantiateViewControllerWithIdentifier:@"manifestImage"];
Base SDK是iOS 9.2,部署目标是8.0。我已经为故事板和视图控制器放置了日志。两者都存在:
2016-07-14 20:08:28.444 App[5445:402097] self.storyboard <UIStoryboard: 0x________>
2016-07-14 20:08:28.451 App[5445:402097] [self.storyboard instantiateViewControllerWithIdentifier:@manifestImage] <ManifestDocumentViewController: 0x________>
任何人都可以告诉我为什么会这样,解决方案是什么。