0

我们构建了一个应用程序并在其中使用了 JASidePanelController。它在 iOS 7 上运行良好,但在 iOS6 中,在加载时,应用程序崩溃。日志中没有显示具体原因,控制转到“ main.m ”,任何人都可以帮助我,因为我无法理解这里发生了什么......这是日志:

GuardMalloc[MCPDemo-1133]: recording malloc stacks to disk using standard recorder
GuardMalloc[MCPDemo-1133]: Allocations will be placed on 16 byte boundaries.
GuardMalloc[MCPDemo-1133]:  - Some buffer overruns may not be noticed.
GuardMalloc[MCPDemo-1133]:  - Applications using vector instructions (e.g., SSE) should work.
GuardMalloc[MCPDemo-1133]: version 27
DemoApp(1133,0x34ce1a8) malloc: stack logs being written into /tmp/stack-logs.1133.8e0b000.MCPDemo.RMUUtx.index
dladdr(0x344ea6d, 0xbfffca48)
_dyld_register_func_for_add_image(0x3264cf2)
_dyld_register_func_for_remove_image(0x3264d52)
2014-03-02 20:13:59.756 DemoApp[1133:907] Keyboard Manager enabled
2014-03-02 20:14:00.858 DemoApp[1133:907] serveraddress:8888/servername/
4

1 回答 1

0

如果添加“所有异常”断点,您将能够从调试控制台看到更多有用的输出。这通常会将您直接带到导致问题的代码行,而不是让您进入 main.m。

可以在http://blog.manbolo.com/2012/01/23/xcode-tips-1-break-on-exceptions找到说明

于 2014-03-02T15:26:58.057 回答