我有这个pod文件包含所有这些库
platform :ios, "7.0"
target "PP for iPad" do
pod 'AFNetworking', '1.1'
pod 'RaptureXML', '1.0'
pod 'NoticeView'
pod 'iVersion'
pod 'iRate'
pod 'Facebook-iOS-SDK', '3.13.1'
pod 'StackMob'
pod 'SSZipArchive'
pod 'ODRefreshControl'
pod 'SDWebImage'
pod 'TPKeyboardAvoiding'
pod 'LXPagingViews'
pod 'AQGridView'
pod 'Google-Mobile-Ads-SDK', '~> 7.0'
end
我使用' pod install'成功运行了它。 ...但是当我尝试运行我的项目时,我收到此错误
ld: library not found for -lAFNetworking
clang: error: linker command failed with exit code 1 (use -v to see invocation)
任何想法如何解决这个错误?
答案 0 :(得分:4)
也许您需要在Target-> Build Settings for Debug(在Pods项目中和/或目标AFNetworking of Pods项目中)中将属性Build Active Architecture设置为NO。还要确保包含相应的有效体系结构(例如' armv7 arm64')。您在构建项目时可能收到了编译警告。
答案 1 :(得分:1)
尝试将Target(不在Project中)中的ONLY_ACTIVE_ARCH设置设置为YES并返回NO以重置某些内部Xcode的缓存引用。(注意:必须首先使其为YES,然后将其设置为NO)。 / p>