Is there a way to check if a modal view is present? I\'d like to run a method only if a modal view is present. Also, if I have multiple modal views, is there a way to check if a
You can check the presence of a modal view controller from the parent view controller
view controller
if ( [[self presentingViewController] presentingViewController] ) { }