2012-11-22 57 views
1

我在测试应用程序超过20分钟后遇到崩溃问题。它正在崩溃,但我无法找到它崩溃的地方。我启用NSZombiaEnable但仍然,我没有得到任何正确的报告。设备日志中的应用程序崩溃报告

下面是我的设备崩溃日志:

Nov 22 23:49:31 unknown UserEventAgent[12] <Notice>: jetsam: kernel termination snapshot being created 
Nov 22 23:49:31 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.apple.mobilemail[0x56d0]) Exited: Killed: 9 
Nov 22 23:49:31 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.yqlabsEnterprise.ticketPadPUSHCHAT[0xee8a]) Bug: launchd_core_logic.c:3733 (25562):0 
Nov 22 23:49:31 unknown com.apple.debugserver-64[1522] <Warning>: 1 [05f2/1303]: error: ::read (4, 0x2ff179d4, 1024) => -1 err = Bad file descriptor (0x00000009) 
Nov 22 23:49:31 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.yqlabsEnterprise.ticketPadPUSHCHAT[0xee8a]) Bug: launchd_core_logic.c:3732 (25562):3 
Nov 22 23:49:31 unknown com.apple.launchd[1] <Notice>: (UIKitApplication:com.yqlabsEnterprise.ticketPadPUSHCHAT[0xee8a]) Assuming job exited: <rdar://problem/5020256>: 10: No child processes 
Nov 22 23:49:31 unknown com.apple.launchd[1] <Warning>: (UIKitApplication:com.yqlabsEnterprise.ticketPadPUSHCHAT[0xee8a]) Job appears to have crashed: Segmentation fault: 11 
Nov 22 23:49:31 unknown SpringBoard[51] <Warning>: Application 'Mail' exited abnormally with signal 9: Killed: 9 
Nov 22 23:49:32 unknown SpringBoard[51] <Warning>: Application 'ticketPad' exited abnormally with signal 11: Segmentation fault: 11 
Nov 22 23:49:32 unknown kernel[0] <Debug>: launchd[1576] Builtin profile: MobileMail (sandbox) 
Nov 22 23:49:33 unknown ReportCrash[1575] <Notice>: Saved crashreport to /Library/Logs/CrashReporter/LowMemory-2012-11-22-234933.plist using uid: 0 gid: 0, synthetic_euid: 0 egid: 0 

请帮助我。

+0

这可能是内存的问题。尝试关闭僵尸并运行乐器以查看泄漏和分配情况。 –

+0

这是段错误,访问不错 –

回答

0

因为它不是一个糟糕的访问,那里不会是一个僵尸......它的segfaulting。

原因#1:d(至少对我来说)

原因#2:
在的NSLog或stringWithFormat坏格式 如果这不是它尝试寻找C代码您使用的可能不存在。

(不存在的符号)

顶部提示:原因#3:
的IOS文件系统是大小写敏感的,也许您指定的厦门国际银行的名字是某种错误的,它不能加载XIB?/A厦门国际银行本身就是腐败

原因#4:
谷歌为 “假设作业退出:10:无子进程”:d

+0

感谢您的回复,您能否向我解释如何解决此类问题。 – user1614347

+0

好,如果它不是因为#1你可能正在调用一个c函数不存在 –

+1

但是,应用程序不会在iPad 1的其他iPad中与ios 5.1.1,32gb崩溃崩溃。 – user1614347