您的位置:首页 > 运维架构

使cocopods管理开源库编译出现Library not found for -lPods问题的解决方法

2015-06-18 09:32 639 查看



If Xcode complains when linking, e.g. 
Library
not found for -lPods
, it doesn't detect the implicit dependencies:

Go to Product > Edit Scheme

Click on Build

Add the 
Pods
 static library, and
make sure it's at the top of the list

Clean and build again

If that doesn't work, verify that the source for the spec you are trying to include has been pulled from github. Do this by looking in /Pods/. If it is empty (it should not be), verify that the ~/.cocoapods/master//.podspec has the correct git hub url in it.

If still doesn't work, check your XCode build locations settings. Go to Preferences -> Locations -> Derived Data -> Advanced and set build location to "Relative to Workspace".

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ios