开发者

AutoreleaseFreedObject Issue

开发者 https://www.devze.com 2023-03-10 10:36 出处:网络
The Application Wind开发者_运维问答ow loads the first time giving this warning: *** __NSAutoreleaseFreedObject(): release of previously deallocated object (0x583e880) ignored

The Application Wind开发者_运维问答ow 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...


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消