iPhone4 崩溃日志 - EXC_CRASH (SIGABRT)

发布于 2024-10-21 13:09:10 字数 567 浏览 2 评论 0原文

从游戏屏幕切换回菜单时,我的应用程序不断崩溃。我不知道如何阅读崩溃日志,任何帮助将不胜感激。现金仅在 iPhone 4 上测试时出现,在 3g 和 3gs 上运行没有问题。

`事件标识符:B358D8C0-0DBC-4454-BF00-2315A143040D 崩溃报告器密钥:6e900bd59b40f1708778b028bd48e67e94fe40c2 硬件型号:iPhone3,1 流程:无议程人力资源 [1128] 路径:/var/mobile/Applications/18025566-3A5C-4D05-8C91-AB54F586E314/noagenda humanresource.app/noagenda humanresource 标识符: noagenda humanresource 版本: ??? (???) 代码类型:ARM(本机) 父进程:launchd [1]

日期/时间:2011-03-10 16:15:23.259 -0600 操作系统版本:iPhone操作系统4.2.1(8C148) 报告版本:104

异常类型:EXC_CRASH (SIGABRT) 异常代码:0x00000000、0x00000000 崩溃的线程:0 `

My app keeps crashing when changing from a game screen back to the menu. I have no idea how to read the crash log, any help would be greatly appreciated. The cash only happens on while testing on a iphone 4, runs without issue on the 3g and 3gs.

`Incident Identifier: B358D8C0-0DBC-4454-BF00-2315A143040D
CrashReporter Key: 6e900bd59b40f1708778b028bd48e67e94fe40c2
Hardware Model: iPhone3,1
Process: noagendahumanresource [1128]
Path: /var/mobile/Applications/18025566-3A5C-4D05-8C91-AB54F586E314/noagendahumanresource.app/noagendahumanresource
Identifier: noagendahumanresource
Version: ??? (???)
Code Type: ARM (Native)
Parent Process: launchd [1]

Date/Time: 2011-03-10 16:15:23.259 -0600
OS Version: iPhone OS 4.2.1 (8C148)
Report Version: 104

Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x00000000, 0x00000000
Crashed Thread: 0
`

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

Bonjour°[大白 2024-10-28 13:09:10

它可能是由未捕获的异常/内存泄漏引起的。

按照以下步骤进行调试:

  1. 首先在XCode中,Build>;清理所有目标
  2. 使用构建和构建分析找出
  3. 几个关键程序函数和程序中任何潜在的泄漏设置断点。 查看应用程序何时崩溃
  4. 使用 try & catch 最后捕获异常
  5. ,使用Run >;使用性能工具运行>泄漏找出实际泄漏

It can be caused by uncaught exception / memory leakage.

Follow these steps to debug:

  1. first in XCode, Build > Clean All Targets
  2. use Build & Analyze to find out any potential leakage
  3. set breakpoints in several key program functions & see when does the app crash
  4. use try & catch to catch exception
  5. last, use Run > Run with Performance Tool > Leaks to find out actual leaks
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文