Xcode ARC (automatic reference counting), “release is unavailable”

前端 未结 2 596
死守一世寂寞
死守一世寂寞 2020-12-05 12:29

For my first time using Xcode I was following a tutorial online. I did everything as the tutorial showed me, but I am afraid that it\'s too outdated.

The error I enc

2条回答
  •  情深已故
    2020-12-05 12:42

    You have two options:

    1) Turn off ARC for this project. This is done by setting 'Objective-C Automatic Reference Counting' to NO in the 'Build Settings' tab of your target in the project page.

    2) Remove all retain release autorelease NSAutoReleasePools and retainCount calls, since ARC makes them for you. With the exception of NSAutoReleasePools They have been replaced by @autorelease{}.

    The second option has been automated by apple see this question to use the refactoring tool.

提交回复
热议问题