OStack程序员社区-中国程序员成长平台

标题: ios - 无效的 `Podfile` 文件 : uninitialized constant [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 02:57
标题: ios - 无效的 `Podfile` 文件 : uninitialized constant

向每个目标添加相同的 pod 是多余的。

   def RedundantPod

        pod "od"
    end

    target 'targetOne' do
        RedundantPod
    end

    target 'targetTwo' do
        RedundantPod
    end

以下设置会引发错误类型:[ ! ] 无效的 Podfile 文件:未初始化的常量。这里有什么问题?



Best Answer-推荐答案


对于 future 的读者,问题来自命名 RedundantPod,它不应该以大写字母 R 开头。

确实,以大写字母开头的名称在 Ruby 中是常量。仍然可以为方法使用常量名称,但您将无法在没有括号的情况下调用它,因为解释器会将名称查找为常量。

您需要显式调用该方法:

def RedundantPod
   pod "od"
end

target 'targetOne' do
   RedundantPod()
end

或不带大写重命名:

def redundantPod
   pod "od"
end

target 'targetOne' do
   redundantPod
end

关于ios - 无效的 `Podfile` 文件 : uninitialized constant,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46815915/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4