EXC_BAD_ACCESS (SIGSEGV) crash

前端 未结 2 1220
自闭症患者
自闭症患者 2020-12-17 06:02

How do I trace the crash ?

Process:         iAddressGrabber [253]
Path:            /Users/egrabber/Library/Application Support/iPhone Simulator/User/Applicat         


        
相关标签:
2条回答
  • 2020-12-17 06:18

    Enable NSZombie - it will tell you which de-allocated object objcMsgSend is trying to call.

    See this earlier question.

    0 讨论(0)
  • 2020-12-17 06:21

    The following technical note contains all the information needed to deal with such dumps:

    Technical Note TN2124 - Mac OS X Debugging Magic

    A little hint:

    1   CFNetwork                       0x006b4868 URLConnectionClient::_clientDidFinishLoading(URLConnectionClient::ClientConnectionEventQueue*) + 194
    

    Focus on this part, the EXC_BAD_ACCESS suggests a (ab)use of invalid memory pointer.

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