我正在构建一个iOS应用,这是我第一次使用Firebase数据库。在Xcode 10.1和Swift 4.2版本中,我试图将Firebase导入到我的类中。在一个快速文件中,我通过“ import Firebase”导入了数据库。
但不幸的是,我收到一条错误消息,提示没有此类模块“ Firebase”。
这是我的podfile:
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'Jawwab' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pod 'EstimoteProximitySDK', '~> 1.0'
# Pods for Jawwab
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'Firebase/Storage'
pod 'Firebase/Database'
end
任何帮助将不胜感激。
答案 0 :(得分:1)
这是XCode中的常见错误,只需尝试清理并构建项目,通常会有所帮助。如果没有:
选项1:再次检查您的“ podfile ”文件,然后运行$ pod install
。
选项2:删除项目的派生数据文件,然后重新构建。
选项3:关闭xcworkspace文件,然后解集成pod文件(运行$ pod deintegrate
),然后运行$ pod install
。
答案 1 :(得分:0)
run pod install
命令再试一次。