How to debug “Terminating in response to backboardd's termination”

与世无争的帅哥 提交于 2019-12-11 04:08:28

问题


Currently I am working on app with huge images processing. Nothing unusual, but sometimes in complety random case my app is terminated due to backboardd crash. Without any errors, exceptions etc. I checked memory warings, nothing, no memory warnings at all, then I checked memory leaks with instruments, still nothing, then I checked backboard crash log ( http://pastebin.com/fk4DLwGL) I can not find any clue there.

What I can do more to track down this error?


回答1:


You'll need to symbolicate that crash report I think as line 24: 4 backboardd 0x000000010005ad60 0x100054000 + 28000 gives some info on the crash but its had the symbols stripped.

See this from Apple or this answer for more information.




回答2:


I found problem, in my app i made a custom side view controller implementation and I didn't queue animation actions for reveal a right and a left side view. That why i think spring board got crash (too many the same animations). I switched to similar open source controller with animation queue and now everything works.



来源:https://stackoverflow.com/questions/23041947/how-to-debug-terminating-in-response-to-backboardds-termination

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!