How to enable ARC for a single file

淺唱寂寞╮ 提交于 2019-11-26 10:48:51

问题


I want to bring a single Objective-C class written using ARC into an old project. The internet provides many references for how to enable ARC for your project and then disable it for single files but I want to do the opposite.

I want to leave the project as it is, i.e. using manual reference counting, and then enable ARC just for the new file. (My searches have failed me here.)

Is this possible? How?


回答1:


Add the -fobjc-arc flag to any files for which you'd like to enable ARC, as described in the ARC documentation.




回答2:


Select Target > Build Phases > Compile Source > Select Your class > Double Click> Type

-fobjc-arc in dialog box

Enter.



来源:https://stackoverflow.com/questions/10523816/how-to-enable-arc-for-a-single-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!