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.
最新版本的 XCode 支持引用计数。然而,许多较旧的库与新的引用计数架构不兼容。
是否有编译器选项或其他东西可以将非引用计数库与新的引用计数应用程序一起使用,还是我总是必须更新代码?
使用 C 的库会发生什么(显然没有引用计数)?
你可以这样做。在build phases要更改的目标的选项卡中,您可以在该Compile Sources部分下为项目中的每个文件设置编译器标志。
build phases
Compile Sources
只需为您不想使用的文件设置编译器标志ARC:
ARC
fno-objc-arc
您可以在选择文件时按住Cmd以一次将标志添加到多个文件。
Cmd