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.
我有一些支持文件,例如 MagicalRecord 和其他每次都会编译的文件。除非我特别希望重新编译它们,否则有没有办法防止这种情况发生?
基本想法是将所有支持文件从应用程序项目移动到静态库项目。
然后,您将“一次”构建库并随后与您的应用程序链接。
Apple在此处描述了该过程。
您必须非常小心地在所有必需的体系结构中构建您的库,也许您必须添加 -ObjC 作为链接器标志。
一个很好的起点是这个问题。