gpt4 book ai didi

ios - 无法调用非函数类型的值 'module'

转载 作者:IT王子 更新时间:2023-10-29 05:48:23 26 4
gpt4 key购买 nike

我在使用 google 的 firebase 时遇到一个奇怪的错误。

当我尝试初始化 Fire base 时使用这里代码为其设置 ref 地址

let BASE_URL = "YOUR_FIREBASE_URL"
var FIREBASE_REF = Firebase(url: BASE_URL)

,显示错误:

Cannot call value of non-function type 'module<Firebase>'

我的 pod 文件如下所示:

# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'

target 'Mission Board' do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pod 'Firebase', '>=2.4.2'
end

环境:Xcode 7.3.1 (7D1014)Firebase 直接来自官方网站。Swift 语言。

有人帮忙吗?

最佳答案

我的 pod 文件如下所示:

platform :ios, ‘9.2’

use_frameworks!

target 'firebaseWithChris' do

pod 'Firebase'

pod 'Firebase/Database'

end

Xcode:在viewController.swift文件中viewDidLoad方法

代替

var rootRef = Firebase(url:"https://<YOUR-FIREBASE-APP>.firebaseio.com")

尝试

var rootRef = FIRDatabase.database().reference()

这对我有用:]

关于ios - 无法调用非函数类型的值 'module<Firebase>',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37330220/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com