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\".
Those who are using swift 3 are welcome to try this. It worked for me.
swift 3
My pod file:
platform :osx, '9.0' use_frameworks! target 'MyProject' do pod 'Firebase/Messaging' pod 'Firebase' end
AppDelegate:
import FirebaseCore import FirebaseMessaging