在iPhone 6 plus中使用SIGTRAP的iOS应用程序崩溃?

时间:2015-08-14 05:22:51

标签: ios objective-c iphone swift symbolicatecrash

我有一个用swift编写的应用程序,它使用AFNetwork和其他一些用Obj编写的帮助程序。在我的客户端设备(iPhone 6+)上,他收到了一个SIGTRAP错误,我试图在我们拥有的测试设备和所有模拟器上重新创建问题,但无法重新创建它。

下面是堆栈跟踪,它崩溃了两次: http://paste.ubuntu.com/12077304/ 当我象征崩溃报告时,它指向:

-[Instagram getOwnBaseUrl] (in DiaryApp) (Instagram.m:118)

在第二个实例中,它指向:

[UIAlertView(AFNetworking) showAlertViewForTaskWithErrorOnCompletion:delegate:cancelButtonTitle:otherButtonTitles:]_block_invoke (in DiaryApp) (UIAlertView+AFNetworking.m:72)

崩溃日志:http://paste.ubuntu.com/12077328/

我无法确定崩溃的确切原因。在这方面的任何帮助将受到高度赞赏。

感谢。

1 个答案:

答案 0 :(得分:15)

SIGTRAP 不是错误,它是例外。它没有显示崩溃的起因。此异常会抛出Main / Next Runloop上的Main线程,因此主线程的stacktrace不会显示它的原点。

它像NSArray indexOutOfBounds或库或其他任何东西

参考link

信号类型

enter image description here