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.
我已经开发了一个兼容 iOS 4 的项目。我的问题是现在我想要非 ARC 到 ARC 启用项目,该项目应该适用于最新的 iOS 6 版本。
使用 Xcode 的 convert to arc 工具将您的项目转换为 ARC。检查下面的屏幕截图。
据我所知,ARC 只是 Xcode 编译器的一项功能,它会自动分析您的代码并插入内存释放语句。它是每个文件而不是每个项目。它可以通过提供某些编译参数来打开/关闭。因此,您不必将现有代码转换为 ARC,这对于 iOS 6 无关紧要。