公告
财富商城
积分规则
提问
发文
2019-07-10 07:15发布
时光不老,我们不散
Library not found whenever I added from pod.
pod
I have already added pod from terminal.
Error:
ld:library not found for -lCloudinary clang: error: linker command failed with exit code 1 (use -v to se invocation)
ld:library not found for -lCloudinary
clang: error: linker command failed with exit code 1 (use -v to se invocation)
When you perform pod install or pod update you must use the new <YourProject>.xcworkspace file instead of the old <YourProject>.xcodeproj file.
pod install
pod update
<YourProject>.xcworkspace
<YourProject>.xcodeproj
It happens because .xcworkspace contains your .xcodeproj and the pods. If you just run .xcodeproj the pods will be missing.
.xcworkspace
.xcodeproj
pods
最多设置5个标签!
When you perform
pod install
orpod update
you must use the new<YourProject>.xcworkspace
file instead of the old<YourProject>.xcodeproj
file.It happens because
.xcworkspace
contains your.xcodeproj
and thepods
. If you just run.xcodeproj
thepods
will be missing.