我正在开发一个应用程序,我已经嵌入了facebook登录。我想退出用户,当用户在进入后台后关闭应用程序时,按( - )而不是主页按钮。所以我打算在委托方法中调用logout方法,该方法在应用程序关闭时调用。我原以为是ApplicationWillTerminate
方法。但它没有用。有谁知道什么是委托方法或我应该在哪里调用注销方法?
答案 0 :(得分:1)
- (void)applicationWillResignActive:(UIApplication *)application
{
}
- (void)applicationDidEnterBackground:(UIApplication *)application
{
}
答案 1 :(得分:1)
在info.plist文件中设置变量 应用程序不在后台设置yes中运行 像这样
- (void)applicationWillTerminate:(UIApplication *)application
{
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
this method called when application enter background