我以访客用户身份登录。我强行退出应用程序(快速按主页按钮,向上轻扫应用程序 - 只是为了澄清)。我重新启动应用程序。匿名用户仍然登录。我认为在我的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?或者有更好的方法来处理这种情况吗?
答案 0 :(得分:1)
如果用户强行退出您的应用,您的应用就无法通知。没有办法让你想要(可靠)。
作为替代方案,您可以在应用启动时将用户注销。