iOS Firebase导入警告&错误

时间:2016-05-22 08:23:14

标签: ios swift import firebase cocoapods

我总是通过在AppDelegate.swift中导入Firebase Framework获得以下警告:

import Firebase -> File 'AppDelegate.swift' is part of module 'Firebase'; ignoring import

以及didFinishLaunchingWithOptions:中的以下错误:

FIRApp.configure() -> Use of unresolved identifier 'FIRApp'


我使用CocoaPods导入了Firebase Framework。 那是我的Podfile:

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

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

  # Pods for Firebase
  pod 'Firebase'
  pod 'Firebase/Messaging'

end

知道我做错了吗?

2 个答案:

答案 0 :(得分:4)

我认为问题可能是您已将项目命名为Firebase

答案 1 :(得分:0)

您应该在Podfile中取消注释第二行“# platform :ios, '9.0'”。我很确定那里有问题。