KERN_INVALID_ADDRESS

后端 未结 1 895
不知归路
不知归路 2020-12-06 02:22

I got this Crash often Can you please help me to find out solution

Incident Identifier: BC2870F3-4119-462B-9B2E-2236E403E7C2
CrashReporter Key:   7d9cc50413d         


        
相关标签:
1条回答
  • 2020-12-06 02:36

    This is an EXC_BAD_ACCESS type of code which relates to accessing deallocated memory. In order to find this you need to enable NSZombie objects. Press Option + Command + R and select the "Diagnostics" tab. Finally, click "Enable Zombie Objects". This should make the compiler stop on the line of code that is causing this crash.

    Most likely you have released an object and then tried to access it afterwards.

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