我以访客用户身份登录。我强制退出应用程序(快速按下主页按钮,在应用程序上向上滑动 - 只是为了澄清)。我重新启动应用程序。匿名用户仍处于登录状态。我认为在我的 AppDelegate 中会像这样简单:
func applicationWillTerminate(application: UIApplication) {
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
PFUser.logOut()
}
显然,事实并非如此。我需要在 applicationWillTerminate 中将 PFUser.currentUser 设置为 nil 吗?还是有更好的方法来处理这种情况?