标签: ios swift firebase firebase-authentication xcode8
我正在使用Firebase构建应用。我想知道哪个是使用Swift和Firebase设置当前用户会话的最佳方式。我应该创建一个用户对象并将该ID作为属性分配给该对象,然后在用户注销时将其设置为nil吗?或者是否有更简单的方法在视图控制器之间共享currentUserID?
答案 0 :(得分:1)
Firebase附带解决方案:
let userID: String = FIRAuth.auth()!.currentUser!.uid print(userID)
刚刚发现。