iOS设备崩溃 - 没有模拟器崩溃

时间:2013-01-12 21:46:38

标签: iphone ios objective-c xcode testflight

我正在使用TestFlight来测试我的应用。在模拟器上,应用程序不会崩溃。但是,在所有iOS设备上,它会在特定实例中崩溃。 TestFlight没有捕获崩溃数据并将其发送给我。

当我直接从Xcode运行应用程序到设备时,它不会崩溃!当我从设备检索崩溃日志并使用atos和dSYM查找崩溃数据时,我得到了以下数据,这些数据并不是真正有用或者是正确的堆栈跟踪:

__destroy_helper_block_ (in TipnTag) (CategoryViewController.m:53)

-[TipsCel setImgMap:] (in TipnTag) (TipsCel.h:34)
-[PlacesGeoCoder geocodingSucceded] (in TipnTag) (PlacesGeoCoder.m:38)
-[TipnTagViewController viewWillAppear:] (in TipnTag) (TipnTagViewController.m:115)

-[TipnTagViewController viewWillAppear:]_block_invoke_0 (in TipnTag) (TipnTagViewController.m:81)
-[TipnTagViewController .cxx_destruct] (in TipnTag) (TipnTagViewController.m:19)

-[PlacesGeoCoder initWithDelegate:] (in TipnTag) (PlacesGeoCoder.m:20)
-[GooglePlacesParser parser:didEndElement:namespaceURI:qualifiedName:] (in TipnTag) (GooglePlacesParser.m:188)
-[GooglePlacesParser parser:didStartElement:namespaceURI:qualifiedName:attributes:] (in TipnTag) (GooglePlacesParser.m:118)
-[AddComment AddComment:]_block_invoke_078 (in TipnTag) (AddComment.m:88)

-[SearchTips LoadQuestions] (in TipnTag) (SearchTips.m:94)
-[TipsCel setImgMap:] (in TipnTag) (TipsCel.h:34)

-[TipnTagViewController viewDidLoad] (in TipnTag) (TipnTagViewController.m:176)

-[SearchTips LoadQuestions] (in TipnTag) (SearchTips.m:82)
-[TipsCel setImgMap:] (in TipnTag) (TipsCel.h:34)
[TipnTagViewController viewWillAppear:]_block_invoke_0 (in TipnTag) (TipnTagViewController.m:90)

常规堆栈跟踪通常具有更多有用的数据,并且更加严格。这只是告诉我在TipsCel.h的第34行的setImgMap处发生了一些事情(实际上根本没有setImgMap)。

有关如何调试/解决此问题的任何想法/指导?

0 个答案:

没有答案