skip to Main Content

I got a crash in my test flight version of an iOS application, but when I check the Xcode crash log system, I am getting the crashed line and crashed function name. But I was not able to find the reason of crash. Does anybody know how to find out the reason of the crash occurred?

Here is the screenshot of the crash log of Xcode -> Organiser.
enter image description here

From this I am not getting the crash reason.

2

Answers


  1. There is a way to show the report in Finder, as per https://help.apple.com/xcode/mac/11.4/index.html?localePath=en.lproj#/devc8ced2ea3 by Control+Clicking in the list of crash reports on the left.

    Please update your question with the .crash file, which should provide full information about the crash.

    Login or Signup to reply.
  2. The function that actually crashed is objc_msgSend. The most likely cause is that you sent a message to an object that had a different type than you and the compiler expected.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search