What does this crash log means?

后端 未结 2 1676
别跟我提以往
别跟我提以往 2021-01-24 09:21

I have already done some research on identifying crash logs but couldn\'t find solution:

Here are my references:

http://www.raywenderlich.com/23704/demystifying-

相关标签:
2条回答
  • 2021-01-24 09:33

    If your application is crashing randomly then you need to analyze your code. That you can do in XCode only.Open your Project in XCode and in Product menu you will find the Analyze option (cmd+shift+B) .make sure you have selected "iOS Device" before analyzing it.

    other than this you can use the this link:

    http://www.raywenderlich.com/23037/how-to-use-instruments-in-xcode

    apple will not accept your app if it is crashing.

    0 讨论(0)
  • 2021-01-24 09:35

    No, Apple will probably get the crash too and reject your app (it's a risk).

    About the crash, it's hard to say, you'll have to run the app from XCode and check there where the crash was.

    If it's a memory issue, profile the app from XCode and you'll see there which component is crashing.

    0 讨论(0)
提交回复
热议问题