使用Firebase Auth和Swift

时间:2016-09-20 20:49:11

标签: ios swift firebase firebase-authentication xcode8

我正在使用Firebase构建应用。我想知道哪个是使用Swift和Firebase设置当前用户会话的最佳方式。我应该创建一个用户对象并将该ID作为属性分配给该对象,然后在用户注销时将其设置为nil吗?或者是否有更简单的方法在视图控制器之间共享currentUserID?

1 个答案:

答案 0 :(得分:1)

Firebase附带解决方案:

let userID: String = FIRAuth.auth()!.currentUser!.uid
print(userID)

刚刚发现。