我正在使用Crashlytics来跟踪我的iOS应用中的错误。每次我在商店上发布新版本时,我都会按照here
的说明将dSYMs文件上传到Crashlytics我的问题是,大多数时候我仍然无法获得可读的堆栈跟踪。 一个例子如下:
Crashed: com.apple.main-thread
EXC_BREAKPOINT 0x00000001000a7400
Crashed: com.apple.main-thread
0 AppName 0x1000a7400 specialized static FormUtils.formatStringToRealmDate(dateString : String) -> Date + 4295750656
1 AppName 0x100038dd0 specialized MenuTableViewController.(getInbox() -> ()).(closure #1) (FormUtils.swift)
2 AppName 0x1000382d0 partial apply for MenuTableViewController.(getInbox() -> ()).(closure #1) (MenuTableViewController.swift)
我怎么读?我唯一理解的是导致问题的函数:FormUtils.formatStringToRealmDate但我不知道为什么会发生这种情况。
有没有办法改善这个? 谢谢你的帮助!