- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
更新到新的 Firebase。创建了一个新的登录 VC,一切正常,没有错误。
现在我突然在我的 VC 中收到错误 Use of unresolved identifier 'FIRAuth'。
我已经尝试重新安装 pods 文件但没有任何运气,似乎有时如果它添加“import Firebase”然后删除它应用程序将编译,似乎没有韵律或原因它有时有效,有时无效:
这是我的代码:
import UIKit
import FirebaseAuth
class SignInViewController: UIViewController {
@IBOutlet weak var emailField: UITextField!
@IBOutlet weak var passwordField: UITextField!
override func viewDidAppear(animated: Bool) {
if let user = FIRAuth.auth()?.currentUser { //error here
self.signedIn(user)
}
}
@IBAction func didTapSignIn(sender: AnyObject) {
// Sign In with credentials.
let email = emailField.text
let password = passwordField.text
FIRAuth.auth()?.signInWithEmail(email!, password: password!) { //error here (user, error) in
if let error = error {
print(error.localizedDescription)
return
}
self.signedIn(user!)
}
}
@IBAction func didTapSignUp(sender: AnyObject) {
let email = emailField.text
let password = passwordField.text
FIRAuth.auth()?.createUserWithEmail(email!, password: password!) { // error here(user, error) in
if let error = error {
print(error.localizedDescription)
return
}
self.setDisplayName(user!)
}
}
func setDisplayName(user: FIRUser) {
let changeRequest = user.profileChangeRequest()
changeRequest.displayName = user.email!.componentsSeparatedByString("@")[0]
changeRequest.commitChangesWithCompletion(){ (error) in
if let error = error {
print(error.localizedDescription)
return
}
self.signedIn(FIRAuth.auth()?.currentUser) //error here
}
}
@IBAction func didRequestPasswordReset(sender: AnyObject) {
let prompt = UIAlertController.init(title: nil, message: "Email:", preferredStyle: UIAlertControllerStyle.Alert)
let okAction = UIAlertAction.init(title: "OK", style: UIAlertActionStyle.Default) { (action) in
let userInput = prompt.textFields![0].text
if (userInput!.isEmpty) {
return
}
FIRAuth.auth()?.sendPasswordResetWithEmail(userInput!) { //error here (error) in
if let error = error {
print(error.localizedDescription)
return
}
}
}
prompt.addTextFieldWithConfigurationHandler(nil)
prompt.addAction(okAction)
presentViewController(prompt, animated: true, completion: nil);
}
func signedIn(user: FIRUser?) {
MeasurementHelper.sendLoginEvent()
AppState.sharedInstance.displayName = user?.displayName ?? user?.email
AppState.sharedInstance.photoUrl = user?.photoURL
AppState.sharedInstance.signedIn = true
NSNotificationCenter.defaultCenter().postNotificationName(Constants.NotificationKeys.SignedIn, object: nil, userInfo: nil)
// performSegueWithIdentifier(Constants.Segues.SignInToFp, sender: nil)
}
}
有人知道为什么会这样吗?
最佳答案
对于 future 的读者:
确保在您的 Podfile
中包含以下内容:
pod 'Firebase/Auth'
安装 pod 后,使用:
导入 FirebaseAuth
这就是为我解决的问题。
关于ios - 使用未解析的标识符 'FIRAuth'(Swift 2、Firebase 3.x),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37345465/
不能在非可选值“FIRAuth”上使用可选链 我已经测试了每个解决方案,但总是出现相同的错误。即使我创建一个新项目,当我使用 FIRAuth 时,我总是会遇到编译错误。 谁能帮帮我。我使用 Swift
我是 iOS 和 fire base 的初学者。 我安装了 firebase cocoa pods。 在我的 loginViewcontroller.h 中导入了 firebase.h 添加了广告连播
我目前正在使用 Nativescript 开发一个应用程序。 在本地模拟器上使用 Firebase 一切正常,但当我在 iPhone 上测试该应用程序时,出现以下错误 CONSOLE LOG file
我遇到了这个问题,现在已经尝试解决了几天,但似乎我尝试的所有方法都会产生更多错误。我在使用 FIRAuth 使用此功能创建用户时遇到问题,它告诉我在 ; 之前添加一个,但它没有解决问题。 错误图片:
我已经找到了这个问题的答案,我把这个贴在这里,因为我在这里找不到答案。 问题是 FIRAuth.auth()?.createUser 不会抛出错误,但也不会创建用户。这甚至是不可能的,因为 Fireb
这几天我一直在为这个问题苦苦挣扎,我是菜鸟,我找不到解决方案。我正在尝试使用 XCode 8.3.3 创建用户注册和登录页面,并使用 Firebase 作为数据库。 我的代码如下: import UI
我是 swift 的新手,我一直在努力学习自己。我遇到了一个问题,我不确定如何解决它。代码如下: import Foundation import Firebase class UserLogin {
这个问题在这里已经有了答案: multiple GoogleService-Info support (2 个答案) 关闭 6 年前。 有人知道如何在 Swift 中创建第二个 FIRAuth 实例
我在通过 Firebase 登录时遇到了问题。当它是 Swift 2 时一切正常,但是在 XCode 将我的整个项目转换为 Swift 3 语法后,错误发生了。 这是我的登录代码: func logi
我试图让用户使用用户名进行身份验证。数据库存储敏感数据,因此我们避免在数据库中存储电子邮件(因为电子邮件是识别数据)。 目前,数据库存储用户的自定义 用户名 以及关联的 FIRAuth UID。 我想
我正在使用带有初始 SignInViewController 的 Firebase 构建一个应用程序,它加载一个登录页面供用户使用电子邮件进行身份验证,这会触发以下方法: @IBAction func
更新到新的 Firebase。创建了一个新的登录 VC,一切正常,没有错误。 尝试复制这个新教程:https://codelabs.developers.google.com/codelabs/fir
我最近更新了我的 podfile 并添加了两个条目 pod 'Firebase/Storage' 和 pod 'FirebaseUI/Storage'。当我添加这两个条目时,当我在 Xcode 中打开
我正在使用以下函数通过 Facebook token 和 Firebase FIRAuth 函数登录用户。没有错误,也没有打印 email 属性。就好像该函数不会被调用一样。 var login =
我得到: 'auth()' is unavailable : use object construction 'FIRAuth()' 我在 pod 文件中添加了 pod 'Firebase/Auth'
当我想在 firebase 中使用短信验证时,应用程序仅在 iOS 上失败 APN 证书已在 firebase 上配置,FirebaseAppDelegateProxyEnabled 在 Info.p
我正在使用 firebase 4、swift 3 和 ios 10,但我找不到 FIRAuth,因为我正在尝试开发一个构建 Messenger 应用程序的项目。任何人都可以帮我吗? 最佳答案 Fire
在我的 Swift 应用程序上,我已成功使用 Google 按钮登录,如明确说明 here 我还想使用电子邮件/密码方法在 Firebase 中登录用户,遵循 these步骤 问题是用户登录后下面一直
我是一名优秀的程序员,十分优秀!