答案 0 :(得分:6)
我使用AppDelegate中的override init()
方法配置Firebase。 Firebase文档以didFinishLaunchingWithOptions
方法显示配置,但我还没有在我的应用中使用该方法。
import UIKit
import Firebase
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
override init() {
FIRApp.configure()
}
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
return true
}
}