AutoreleaseFreedObject 问题
应用程序窗口第一次加载时会给出以下警告:
*** __NSAutoreleaseFreedObject(): 忽略先前释放的对象 (0x583e880) 的释放
应用程序第二次崩溃时会给出 EXC_BAD_ACCESS。 我哪里错了?
PS我尝试启用僵尸但它给出了相同的错误......
The Application Window loads the first time giving this warning:
*** __NSAutoreleaseFreedObject(): release of previously deallocated object (0x583e880) ignored
The second time the app crashes giving EXC_BAD_ACCESS.
Where am I wrong?
P.S. I tried to enable Zombies but it gives the same error...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您已经过度释放了一个对象。
您可能对不属于您的对象调用了release,然后在池耗尽时将其释放。
It looks like you've over released an object.
You may have called
release
on an object that you don't own that is then released when the pool is drained.