Cannot Import Firebase Into Swift Class

后端 未结 11 1932
[愿得一人]
[愿得一人] 2020-12-03 06:29

I am totally new to Firebase and building iOS apps. In Xcode 7, I am trying to import Firebase into my Swift class. In a swift file, I have typed \"import Firebase\".

11条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-03 07:27

    Those who are using swift 3 are welcome to try this. It worked for me.

    My pod file:

    platform :osx, '9.0'
    use_frameworks!
    
    target 'MyProject' do
      pod 'Firebase/Messaging'
      pod 'Firebase'
    end
    

    AppDelegate:

    import FirebaseCore
    import FirebaseMessaging
    

提交回复
热议问题