Is it possible to determine if the current UIView has a UIAlertView on display (other than setting a variable every time a UIAlertView is created).
I'm thinking something along the lines of
if ([self.view.subviews containsObject:UIAlertView]) { ... }
But that obviously doesn't work.