xcode – 如何添加Copy Pods资源?

我不小心删除了“copy Pods Resources”,如何将其添加回去?
我试过’pod install’但它不起作用
我在项目中只有一个目标

解决方法

我发现你需要编辑project.pbxproj

包括这些行:

E0F2945D18DC83D9006CC8FE是您的目标ID

在/ *开始PBXNativeTarget部分* /

更新构建阶段:

buildPhases = (
            E0F2928A18DC83D9006CC8FE /* Check Pods Manifest.lock */,E0F2928A18DC83D9006CC8FE /* Sources */,E0F2930018DC83D9006CC8FE /* Frameworks */,E0F2932118DC83D9006CC8FE /* Resources */,E0F2945D18DC83D9006CC8FE /* ShellScript */,E0F2945E18DC83D9006CC8FE /* copyFiles */,E0F2945E18DC83D9006CC8FE /* copy Pods Resources */,);

然后

/* Begin PBXShellScriptBuildPhase section */
        E0F2945D18DC83D9006CC8FE /* ShellScript */ = {
            isa = PBXShellScriptBuildPhase;
            buildActionMask = 2147483647;
            files = (
            );
            inputPaths = (
            );
            outputPaths = (
            );
            runOnlyForDeploymentPostprocessing = 0;
            shellPath = /bin/sh;
            shellScript = "";
        };
        E0F2945D18DC83D9006CC8FE /* copy Pods Resources */ = {
            isa = PBXShellScriptBuildPhase;
            buildActionMask = 2147483647;
            files = (
            );
            inputPaths = (
            );
            name = "copy Pods Resources";
            outputPaths = (
            );
            runOnlyForDeploymentPostprocessing = 0;
            shellPath = /bin/sh;
            shellScript = "\"${SRCROOT}/Pods/Pods-resources.sh\"\n";
            showEnvVarsInLog = 0;
        };
        E0F2945D18DC83D9006CC8FE /* Check Pods Manifest.lock */ = {
            isa = PBXShellScriptBuildPhase;
            buildActionMask = 2147483647;
            files = (
            );
            inputPaths = (
            );
            name = "Check Pods Manifest.lock";
            outputPaths = (
            );
            runOnlyForDeploymentPostprocessing = 0;
            shellPath = /bin/sh;
            shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n    cat << EOM\nerror: The sandBox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n    exit 1\nfi\n";
            showEnvVarsInLog = 0;
        };
/* End PBXShellScriptBuildPhase section */

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...