我正在开发一个应用程序,并且我已经嵌入了 facebook 登录。我想注销用户,当用户在进入后台后关闭应用程序时,按(-)而不是主页按钮。所以我打算在应用程序关闭时调用的委托方法中调用注销方法。被认为是ApplicationWillTerminate
方法。但它不起作用。有谁知道什么是委托方法或我应该在哪里调用注销方法?
问问题
1691 次
2 回答
1
- (void)applicationWillResignActive:(UIApplication *)application
{
}
- (void)applicationDidEnterBackground:(UIApplication *)application
{
}
于 2013-05-29T05:48:09.357 回答
1
在 info.plist 文件中设置变量应用程序不在后台运行设置是这样的
- (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
于 2013-05-29T06:18:50.057 回答