如何检查控制器是否已经在navigationcontroller viewcontrollers堆栈上?

时间:2015-02-25 19:16:59

标签: ios swift uinavigationcontroller uitabbar

我收到了这个错误:

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Pushing the same view controller instance more than once is not supported

如何检查控制器中是否已存在控制器而不是推动该控制器而是移动到控制器?

以下是我根据选项卡选择推送控制器的一些代码:

func tabSelected(tab: String) {
    switch tab{
    case "payment":
        mainNavigationController.popToViewController(myAccountViewController, animated: true)
    break
    case "delivery":
        mainNavigationController.pushViewController(deliveryViewController, animated: true)
        break
    case "service":
        mainNavigationController.pushViewController(serviceViewController, animated: true)
        break
    case "profile":
        mainNavigationController.pushViewController(profileViewController, animated: true)
        break
    default:
        break
    }
}

3 个答案:

答案 0 :(得分:4)

您可以检查导航控制器的viewControllers属性。

if contains(mainNavigationController.viewControllers, controller) {
  // move it
} else {
  // push it
}

答案 1 :(得分:3)

您似乎正在将同一个控制器推送到导航堆栈。您无法将视图控制器推送到堆栈中已存在的堆栈中。可能是您多次调用tabSelected()方法,因此您应该确保它不会被多次调用。

防止崩溃的一个好方法是弹出现有的控制器, 已经在堆栈中。因此,每当您离开视图控制器时,您应该执行类似self.navigationController?.popToViewController(myViewController, animated: true)的操作。

或者您可以执行以下操作来检查控制器已经存在于堆栈中的任何内容:

 if (self.navigationController?.topViewController.isKindOfClass(ViewController) != nil) {

}

针对您的具体情况,请执行以下操作:

if(mainNavigationController.topViewController.isKindOfClass(ProfileViewController) != nil) {

    }

答案 2 :(得分:0)

要检查导航控制器中是否存在视图控制器,可以使用以下方法。这将在Swift 5中编译:

    if let stack = self.navigationController?.viewControllers {
      for vc in stack where vc.isKind(of: SomeViewController.self) {
        debugPrint("exists")
      }
    }