XCode ARC允许发布

时间:2013-04-01 08:51:29

标签: ios xcode memory automatic-ref-counting memory-leaks

非常奇怪ARC允许发布操作但不允许保留操作。据我所知,所有这些都是被禁止的。我的应用程序因内存泄漏而崩溃。为什么ARC无法正常工作?

enter image description here

1 个答案:

答案 0 :(得分:0)

只需删除

行即可
[anaView retain];

然后XCode肯定会将错误指向

[anaView release];

XCode不会同时显示所有错误。

旁注:

[anaView release];
[anaView retain];

对我来说很奇怪。我的意思是先release然后retain;这是为了什么目的?