我在Firebase控制台中删除了用户,但是未显示“ welcomeController”,应该读取Firebase令牌,但我不确定该怎么做。如果有人有解决方案,我将无所作为。
当前我在didFinishLaunchingWithOptions中使用:
如果Auth.auth()。currentUser?.uid ==无{
self.window?.rootViewController = EntryController()
} else {
self.window?.rootViewController = MainTabBarController()
}
当我在控制台中删除用户时,rootView应该是EntryController,但未显示。
答案 0 :(得分:0)
执行deleteUser函数时,一旦从服务器获取成功消息,请确保将currentUser.uid设置为nil。
到目前为止,当调用didFinishLaunchingWithOptions时,它仍指向“ MainTabBarController()”,因为已删除用户的uid仍存在于应用程序实例中。
编辑: 希望这会有所帮助。
How to log out user from app when I delete his account on firebase?