菜鸟教程小白 发表于 2022-12-12 12:07:54

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, &#39;9.0&#39;

target &#39;Sample&#39; do

use_frameworks!

pod &#39;MBProgressHUD&#39;, &#39;~&gt; 0.9&#39;
pod &#39;TPKeyboardAvoiding&#39;, &#39;~&gt; 1.2&#39;
pod &#39;SDWebImage&#39;, &#39;~&gt; 3.7&#39;
pod &#39;UIActivityIndicator-for-SDWebImage&#39;
pod &#39;UITextView+Placeholder&#39;, &#39;~&gt; 1.2&#39;
pod &#39;Alamofire&#39;, &#39;~&gt; 4.0&#39;

end

post_install do |installer|
    installer.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
            config.build_settings[&#39;SWIFT_VERSION&#39;] = &#39;3.0&#39;
      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]
查看完整版本: ios - ld : framework not found error in xcode 8