有没有办法让控制器只在iOS中出现(也许在macOS中)?

时间:2017-12-17 10:46:28

标签: ios uiviewcontroller segue pushviewcontroller presentviewcontroller

编辑:接受的答案是满足我的需求,但我仍然对不同的方法持开放态度。

我想出了这个问题。我有一个控制器,我希望它只是表现。如果某个控制器试图推送它或尝试用其他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)
    }

}

那你觉得怎么样?这可以实现吗?

1 个答案:

答案 0 :(得分:1)

所以我对防止推进有了一个想法。你可以使用Swizzling来调动pushViewController函数。因此,在swizzles函数中,您检查视图控制器是否为OnlyPresentableController的实例,然后您什么也不做,如果不是,您可以继续推送。

注意:我假设您了解Method Swizzling