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.
我正在处理一个使用 Cocoapods 的项目。我找不到任何将框架添加到现有 Cocoapods 设置的文档。我能找到的只是有关如何从头开始设置 Cocoapods 的示例。
有什么帮助吗?我想通过 Cocoapods 添加 ABContactHelper。
谢谢!
只需将 pod 添加到您的Podfile并pod install再次运行。
Podfile
pod install
对于ABContactHelper,执行:
ABContactHelper
edit Podfile
pod 'ABContactHelper'
并且不要忘记在执行“pod install”之前关闭 xCode 中的工作区,因为如果不这样做,您可能会丢失所有未保存的更改,因为 xCode 会要求您将工作区恢复为保存在磁盘上的版本。是的,我做过一次;)