While my app is displaying a UIActionSheet, I send startUpdatingLocation to the CLLocationManager. This results in a Location Warning, if the user has not yet agreed to letting my app use her location.
Now, the problem is, that the UIAlertView that the Location Manager displays pops up behind my UIActionSheet, and thus the user can not interact with it (thus the location updates never come in, thus the action sheet is never dismissed...).
Is there a way to make the Location Manager dialog appear on the very top (or my action sheet behind it)?
If it's relevant: there is a UITabBar and I use showFromTabBar to display the action sheet.