我应该向哪个 appDelegate 文件添加 Firebase 代码?
Which appDelegate file do I add Firebase code to?
我想将 Firebase 附加到我的 React Native 应用程序,并且在 firebase 网站的指南中说 "To connect Firebase when your app starts up, add the initialization code below to your main AppDelegate class." 然后它有一段代码用于 Swift,一段代码用于 Objective C。我怎么知道我应该使用哪个?
谢谢!
鉴于您在问题中有 "react-native-firebase" 标记,我假设您正在使用该软件包。如果你看一下 documentation 它说
To initilize the native SDK in your app, add the following to your
ios/[YOUR APP NAME]/AppDelegate.m file
您也可以尝试查看example project firebase 相关代码放在AppDelegate.m 文件中的位置
我想将 Firebase 附加到我的 React Native 应用程序,并且在 firebase 网站的指南中说 "To connect Firebase when your app starts up, add the initialization code below to your main AppDelegate class." 然后它有一段代码用于 Swift,一段代码用于 Objective C。我怎么知道我应该使用哪个?
谢谢!
鉴于您在问题中有 "react-native-firebase" 标记,我假设您正在使用该软件包。如果你看一下 documentation 它说
To initilize the native SDK in your app, add the following to your ios/[YOUR APP NAME]/AppDelegate.m file
您也可以尝试查看example project firebase 相关代码放在AppDelegate.m 文件中的位置