我遇到了一个问题,因为有两种方法可以显示我的 ViewController 。
- 第一种方法是
performSegue(withIdentifier: "segue", sender: self)
它工作得很好,因为我的 navigationItem 中有这个后退按钮:
然后我使用此代码呈现相同的 ViewController (来自另一个 viewController ,而不是第一种情况):
let storyboard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
let navVC = storyboard.instantiateViewController(withIdentifier: "navViewController") as! UINavigationController
let vc = navVC.topViewController as! ViewController
self.present(navVC, animated: true, completion: nil)
但是我的 ViewController 中没有任何后退按钮。
我的问题是:当我使用这个功能时,我怎样才能保留我的backButton(它是怎样的) :performSegue(withIdentifier: "segue", sender: self) ,但是当我使用这个函数时添加按钮(可能看起来不同):self.present(navVC, animated: true, completion: nil)
注意: 在我的案例 1 中,我的 segue 直接连接到 ViewController ,但在案例 2 中,我展示了 UINavigationController 和 ViewController 是 embed in 在这个 UINavigationController 中的。
编辑:我试过这段代码,但它总是打印:"1........." :
if self.presentingViewController != nil {
print("1..........")
} else if self.navigationController?.presentingViewController?.presentedViewController == self.navigationController {
return print("2.........")
} else if self.tabBarController?.presentingViewController is UITabBarController {
return print("3........")
}
而且这段代码也会打印:"Else......." :
let isPresentingInAddMealMode = presentedViewController is UINavigationController
if isPresentingInAddMealMode {
print("FirstOption......................")
} else {
print("Else......................")
}
如果您需要更多信息,请告诉我。
非常感谢。
Best Answer-推荐答案 strong>
您需要检查presentedViewController 并添加返回按钮,如下所示。
if ([self presentedViewController]) {
// add your back button item here
}
关于ios - UIBarButtonItem 取决于演示文稿。 swift 3,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/40763578/
|