1

我真的被困在我的 iOS 应用程序的 Firebase 安装这一步。Firebase 安装到 Xcode我尝试了很多次,最后我可以在我的项目中安装一些“pod 文件”。但是当我添加时import Firebase,错误显示如下

没有这样的模块“Firebase”

谁能告诉我如何将 firebase pod 安装到我现有的 ios 项目中?还有如何清除我刚刚安装到它的吊舱。

我正在使用 swift 2.2、Scode 7.3 和 mac os x ei

我的 pod 内容是

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

target ‘APPNAME’ do
  # Comment this line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

   # Pods for APPNAME

  target 'APPNAME Tests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'APPNAME UITests' do
    inherit! :search_paths
    # Pods for testing
  end

end

我的错误: 我的错误图片

4

1 回答 1

1

在您的 pod 文件中添加此行

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

target ‘APPNAME’ do
  # Comment this line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!
 pod 'Firebase', '>= 2.5.1'
   # Pods for APPNAME

  target 'APPNAME Tests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'APPNAME UITests' do
    inherit! :search_paths
    # Pods for testing
  end

end

在那之后更新吊舱

于 2016-06-17T10:35:47.320 回答