Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
很奇怪,ARC 允许释放操作但不允许保留操作。据我所知,所有这些都是被禁止的。我的应用程序由于内存泄漏而崩溃。为什么 ARC 不能正常工作?
只需删除该行
[anaView retain];
然后XCode肯定会指出错误
XCode
[anaView release];
XCode 不会同时显示所有错误。
边注:
[anaView release]; [anaView retain];
我觉得很奇怪。我的意思是先release,然后retain;这样做的目的是什么?
release
retain