ios 应用程序在模拟器 5.0 中崩溃

发布于 2024-12-29 04:06:42 字数 258 浏览 0 评论 0原文

我的应用程序在启动时崩溃,并显示以下 SIGBART :

@autoreleasepool {
    return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));

该代码是从 git 存储库中提取的,并且可以在其他计算机上运行。

我尝试重新安装 xcode 4.2,但没有成功。
这是针对ios 5.0的

My app crashes on launch with the following SIGBART :

@autoreleasepool {
    return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));

The code is pulled from a git repository and works on other computers.

I tried reinstalling xcode 4.2 to no avail.
This is for ios 5.0

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

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

发布评论

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

评论(1

墟烟 2025-01-05 04:06:42

该行不会抛出异常。要找出哪一行导致崩溃,您应该查看异常断点。通常你想添加一个异常抛出断点来查看哪一行抛出了异常。此答案中的更多详细信息: Xcode 不显示导致crash

您还应该始终扫描代码中的错误并发布一些代码!如果您不发布代码,大多数时候没有人能够帮助您,特别是当问题是与代码相关的崩溃时。

That line isn't throwing the exceprion. To find out which line causes the crash you should look at Exception Breakpoints. Usually you want to add an exception throw Breakpoint to see which line threw the exception. More details in this answer: Xcode doesn't show the line that causes a crash

You should also always scan your code for errors and post some code! If you don't post code, most of the times nobody will be able to help you, especially when the problem is a code related crash.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文