MyViewController是否在窗口层次结构中?

时间:2015-06-19 15:03:21

标签: ios swift uiviewcontroller

有没有办法检查窗口层次结构中是否有MyViewController? 我想知道我是否可以提供UIAlertController

var alert = UIAlertController(title: "Hello", message: "Just for fun", preferredStyle: UIAlertControllerStyle.Alert)
MyViewController.presentViewController(alert, animated: true, completion: nil)

1 个答案:

答案 0 :(得分:7)

视图控制器的view如果在层次结构中设置了window属性

if MyViewController.view.window != nil {
    // In the window hierarchy
}