关于如何在编译Xcode-Plugin工程的时候增加Cocoapods依赖
以及在Mac App上使用Cocoapods的时候遇到Library not found for -lPods
时的解决办法
最近在写一个Xcode的插件,需要导入Cocoapods的依赖,但是添加Pods以后不管怎么样都无法编译成功,始终都是Library not found for -lPods
错误,在官网上终于找到了教程,记录如下
- 添加Podfile文件输入:例如
platform :osx, "10.10"
pod 'AFNetworking', '~>2.0'
$ pod install
$ open xxx.xcworkspace
- 在编译目标下选择
Edit Scheme
- 选择
Build
选项,添加Pods
,并把Pods
移到最高 - Run
另附上官网的问题解决方案链接:官网问题解决集锦