没有此类模块“ Firebase”,无法将Firebase导入Swift 4

时间:2019-04-03 06:37:03

标签: ios firebase cocoapods swift4.2

我正在构建一个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

任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:1)

这是XCode中的常见错误,只需尝试清理并构建项目,通常会有所帮助。如果没有:

选项1:再次检查您的“ podfile ”文件,然后运行$ pod install

选项2:删除项目的派生数据文件,然后重新构建。

选项3:关闭xcworkspace文件,然后解集成pod文件(运行$ pod deintegrate),然后运行$ pod install

答案 1 :(得分:0)

  1. 只需再次保存 podfile run pod install命令再试一次。
  2. 还要检查并确认您在添加 pod 时已选择了项目的所有目标