我想出了这个问题。我有一个控制器,我希望它只是表现。如果某个控制器试图推送它或尝试用其他segue显示它,应用程序不应该显示它。让我用一个例子来澄清:
class OnlyPresentableController : UIViewController{
///imagine a variable like this exists.
override var isOnlyPresentable : Bool{
return true
}
//........
}
class SomeController : UIViewController{
//.....
@IBAction func aButtonClick(_ sender: UIButton) {
let controller = OnlyPresentableController(nibName: "OnlyPresentableController", bundle: Bundle.main)
//this will work
present(controller, animated: true, completion: nil)
}
@IBAction func anOtherButtonClick(_ sender: UIButton) {
let controller = OnlyPresentableController(nibName: "OnlyPresentableController", bundle: Bundle.main)
//this will not work because controller is an only presentable one.
navigationController?.pushViewController(controller, animated: true)
}
}
那你觉得怎么样?这可以实现吗?
答案 0 :(得分:1)
所以我对防止推进有了一个想法。你可以使用Swizzling来调动pushViewController
函数。因此,在swizzles函数中,您检查视图控制器是否为OnlyPresentableController
的实例,然后您什么也不做,如果不是,您可以继续推送。
注意:我假设您了解Method Swizzling