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 在另一个项目中使用现有项目的类/资源文件
我的工作区中有多个 iOS 项目。有没有办法可以在我新创建的项目中使用现有项目的代码?
是的,您可以重复使用这些代码。
1.制作一个你想要重用的函数的静态库。
2.在你的项目中添加静态库和.h文件。你可以在你的新项目中直接调用静态库中的那些函数。
您可以找到创建静态库的好教程:这里