ios - ld : framework not found error in xcode 8
<p><p>我使用 xcode 8 进行开发,使用 cocoapods 1.0.1 进行框架。安装框架后,我无法构建我的项目。我收到“ld:找不到框架”错误。我在 pod 文件中使用以下行:</p>
<pre><code># Uncomment this line to define a global platform for your project
platform :ios, '9.0'
target 'Sample' do
use_frameworks!
pod 'MBProgressHUD', '~> 0.9'
pod 'TPKeyboardAvoiding', '~> 1.2'
pod 'SDWebImage', '~> 3.7'
pod 'UIActivityIndicator-for-SDWebImage'
pod 'UITextView+Placeholder', '~> 1.2'
pod 'Alamofire', '~> 4.0'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>安装框架后,您是否关闭了项目并打开了新创建的工作区? </p>
<p>一旦您开始使用 CocoaPods 安装框架,您必须使用工作区,因为它包含您的示例项目和包含框架的 Pod 项目。 </p>
<p>在您的项目目录中,确保打开 .xcworkspace 而不是 .xcodeproj。</p>
<p>编辑:
如果这不是问题,请转到您的示例目标/常规/链接框架和库</p>
<p>你应该只有一个名字应该是这样的:Pods_Sample.framework</p>
<p>如果您只使用 cocoapod 来安装框架,那么它应该是唯一的一个,因为它包含所有 pod 。</p></p>
<p style="font-size: 20px;">关于ios - ld : framework not found error in xcode 8,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/39661296/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/39661296/
</a>
</p>
页:
[1]