Xcode - ld: library not found for -lPods

后端 未结 22 1472
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-28 18:27

I get these errors when I try to build an iOS application.

ld: library not found for -lPods
clang: error: linker command failed with exit code 1 (use -v to s         


        
22条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-28 18:59

    It seems project has been using cocoapods. and that files are missing from your project.

    You cant just download it from git. You need to install it from cocoapods.

    for more help, you may follow Introduction to CocoaPods Tutorial

    If the project uses CocoaPods be aware to always open the .xcworkspace file instead of the .xcodeproj file

提交回复
热议问题