Cannot Import Firebase Into Swift Class

后端 未结 11 1934
[愿得一人]
[愿得一人] 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:15

    So after spending hours and hours trying to fix this error I did the following and my life went back to normal

    a) Went to my Podfile and changed pod 'Firebase', '~> 4.8' to pod 'Firebase/Core'

    b) Then I went into my AppDdelegate changed from import Firebase to import FirebaseCore

    If you were facing the same problem as me this solution will work for you

提交回复
热议问题