在开发iOS应用程序几周后,我想在我的测试设备上部署应用程序(之前使用过模拟器)。因为我总是得到这个错误:
ld: library not found for -lPods
clang: error: linker command failed with exit code 1 (use -v to see invocation)
现在它甚至不能在模拟器中运行。 我已经尝试重新安装所有pod并搜索了数十亿个线程。但是我没有让它发挥作用。 这是我的Podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.1'
target 'be2gether'
pod 'GoogleMaps'
use_frameworks!
pod 'Alamofire', '~>3.0'
pod 'SwiftyJSON', '~> 2.3'
pod 'IQKeyboardManagerSwift'
project '../be2gether.xcodeproj'
我使用.xcworkspace文件打开项目。 已经尝试清理项目或alt +清理项目并删除Xcode中的派生数据。 我会发布构建选项,但我不知道哪个对于这个问题很重要。我怎样才能使项目重新开始工作? 谢谢你的帮助:))