我有一个 ios 应用程序,我在其中使用了故事板。
我有一个问题:当用户从后台返回时,我会检查用户会话是否仍然有效。如果此会话已过期,我会将用户发送到登录控制器(我的故事板上的第二步)我该怎么做?
我有一个 ios 应用程序,我在其中使用了故事板。
我有一个问题:当用户从后台返回时,我会检查用户会话是否仍然有效。如果此会话已过期,我会将用户发送到登录控制器(我的故事板上的第二步)我该怎么做?
就这样做
伪代码不是实际代码
(void)applicationWillEnterForeground
{
if(sessionAvailable)
{
//do normal next working
}
else
{
LoginViewController *loginViewController=[self.storyBoard instantiateViewControllerWithidentifier:@"LoginViewController"];
[self.navigationController pushViewController:loginViewController animates:YES];
}
}