No such module 'FirebaseDatabase'
问题 I am developing iOS app with Swift 3 with Firebase database. My Podfile: target 'MyApp' do # Comment the next line if you're not using Swift and don't want to use dynamic frameworks use_frameworks! # Pods for MyApp pod 'Firebase/Core' pod 'Firebase/Auth' pod 'Firebase/Database' end I run pod install , which installs the pods. I created a class: import Foundation import FirebaseDatabase // Error: no such module 'FirebaseDatabase' class MyDatabase { var ref: DatabaseReference! ... } But I get