我如何处理连续点击两次的 UITabBarItem 并关闭 segues?

How Can I handle an UITabBarItem clicked twice consecutive and dismiss segues?

我的 UITabBarController 缓存了所选项目之前的所有内容,这很好,但我想关闭我显示的每个 segue 当我单击显示的视图的项目时,连续两次相同的页面。

我需要怎样做才能提供这个案例?解决方案的详细答案那就太好了。

使用 tabbarControler 委托方法

- (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController
{
if (alreadyPushed){
return false
}
return true
}