我在使用0.34.4 & cocoapods-0.35.0.rc2版本的cocoapods时遇到了问题。在我将笔记本电脑更新到OS X Yosemite后,我不得不更新gem和cocoapods,而我的旧iOS项目停止工作。
我收到以下错误:
using cocoapods-0.34.4:
ld: library not found for -lPods-Evernote-SDK-iOS
clang: error: linker command failed with exit code 1 (use -v to see invocation)
using cocoapods-0.35.0.rc2:
There is a circular dependency between ShareKit/NoARC and ShareKit/Core这是我的podfile内容,有什么帮助吗??
platform :ios, '6.0'
source 'https://github.com/CocoaPods/Specs.git'
pod 'CXAlertView'
pod 'ShareKit'
pod 'JSONKit'
pod 'FPPopover'
pod 'Base64'
pod 'CZDateFormatterCache'
pod 'JMImageCache'
pod 'Reachability'
pod 'MFSideMenu'
pod 'ASIHTTPRequest'发布于 2014-11-29 20:12:47
删除当前的0.35.0版本,只需运行:
sudo gem uninstall cocoapods
您必须通过以下命令安装特定版本的可可pods:
sudo gem install cocoapods -v 0.34.4
比pod install
发布于 2014-11-15 21:54:36
通过创建新项目解决了问题!我在新项目中使用了cocoapods-0.34.4
https://stackoverflow.com/questions/26934438
复制相似问题