Objective-C “message sent to deallocated instance 0x5633b0”

后端 未结 7 1902
我寻月下人不归
我寻月下人不归 2020-12-12 14:07

I appear to have some overzealous releasing going on in my obj-C app - getting error message

\"-[myobj release]: message sent to deallocated instance

相关标签:
7条回答
  • 2020-12-12 14:51

    0x5633b0 is likely the address of object in question (the value of self). You can use NSLog or printf with %p to print it.

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