i have a window that when up, i don't want any alert views popping up over it. the following takes care of that, but has some other side effects, like not showing the status bar, which just comes out as white space:
Code:
((MyAppDelegate*)([UIApplication sharedApplication].delegate)).window.windowLevel = UIWindowLevelStatusBar;
is there a way i can detect if an alert view is about to be opened and, say, put it behind the current view, if the view is the one i don't want alerts popping up over?
any other thoughts of how to handle this?