iphone应用程序仅在设备和使用仪器进行评测时崩溃

iphone应用程序仅在设备和使用仪器进行评测时崩溃,iphone,crash,Iphone,Crash,我无法在我的iphone应用程序中找到崩溃的原因。它只有在设备中才会崩溃。但是,当断点打开时,它不会崩溃。崩溃后,将在组织者控制台中打印以下日志 Mar 21 15:43:16 abc-Ss-iPhone com.apple.SpringBoard[15] <Notice>: CoreAnimation: timed out fence 1f4 Mar 21 15:43:18 abc-Ss-iPhone ReportCrash[1771] <Notice>: Formu

我无法在我的iphone应用程序中找到崩溃的原因。它只有在设备中才会崩溃。但是,当断点打开时,它不会崩溃。崩溃后,将在组织者控制台中打印以下日志

Mar 21 15:43:16 abc-Ss-iPhone com.apple.SpringBoard[15] <Notice>: CoreAnimation: timed out fence 1f4

Mar 21 15:43:18 abc-Ss-iPhone ReportCrash[1771] <Notice>: Formulating crash report for process aaa[1770]

Mar 21 15:43:18 abc-Ss-iPhone com.apple.launchd[1] (UIKitApplication:com.xxx.aaa[0x3989][1770]) <Warning>: (UIKitApplication:com.xxx.aaa[0x3989]) Job appears to have crashed: Segmentation fault: 11

Mar 21 15:43:18 abc-Ss-iPhone SpringBoard[15] <Warning>: Application 'aaa' exited abnormally with signal 11: Segmentation fault: 11

您正在评测应用程序的发行版还是调试版?如果发布的话,我相信你仍然能够解码crashlog。请打开该设备的XCode Organizer->Device Logs进行检查。

您是否正在评测该应用程序的发行版或调试版。如果发布,那么我相信您仍然能够解码crashlog。你是不是得了车祸?(当您在XCode Organizer中打开该设备的设备日志时)?好的,谢谢viewcontroller很早就发布了。您可以将其标记为答案否,评论不能标记为答案。但是,您可以添加自己的答案。除非你想让我添加我的评论作为答案。@Amiramix我的意思是你可以把你的评论作为答案,这样我就可以标记它了。
//////////////////////////////in bg thread

if(needToReload){
    NSLog(@"calc end---table refresh called");
    [self performSelectorOnMainThread:@selector(updateTable) withObject:nil waitUntilDone:YES];            
}