Can a custom xcode template partially and selectively enable ARC (Automatic Reference Counting)?

拟墨画扇 提交于 2019-12-04 19:20:39

no, but you're doing it the hard way... simply create a static library target for these MRC sources (if one does not already exist -- it is a 3rd party library), then set the appropriate build settings per target. then link the library with your final executable.

You can select multiple files in the Compile Sources list and apply the -fno-objc-arc tag to all of them at once by pressing Enter > Paste > Enter.

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