ld: library not found for -lPods
缺少了Tests,UITests的podfile里面的target
老项目拿来用会出现这一错误
target ‘Your Project Name + Tests’ do
inherit! :search_paths
end
添加后,pod install一下就解决啦
ld: library not found for -lPods
缺少了Tests,UITests的podfile里面的target
老项目拿来用会出现这一错误
target ‘Your Project Name + Tests’ do
inherit! :search_paths
end
添加后,pod install一下就解决啦