ios - Is MyViewController in the window hierarchy? -


is there way check if myviewcontroller in window hierarchy ? want know if can present uialertcontroller :

var alert = uialertcontroller(title: "hello", message: "just fun", preferredstyle: uialertcontrollerstyle.alert) myviewcontroller.presentviewcontroller(alert, animated: true, completion: nil) 

the view controller's view have window property set if in hierarchy

if myviewcontroller.view.window != nil {     // in window hierarchy } 

Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -