我想先前得到viewController
。獲取以前的UIViewController swift
我有2 UIViewControllers
和navigationMenu
當我選擇從navigation
菜單我想從那裏菜單中打開移動到第二UIViewController
得到的UIViewController任何行。
我想知道如何在這種情況下
我想這讓以前UIViewController
但算上返回nil
:
let n: Int! = self.navigationController?.viewControllers.count
print(n)
let myUIViewController = self.navigationController?.viewControllers[n-2] as! UIViewController
編輯: -
打開的菜單代碼
let menuButton = UIBarButtonItem.init(title :"open", style: .plain, target: self.revealViewController(), action: #selector(SWRevealViewController.revealToggle(_:)))
navigationItem.leftBarButtonItem = menuButton
哪個庫你在用菜單嗎? –
SWRevealViewController –
好吧,你只想知道在一個地方,或者你想知道從任何文件? –