Hi!
I'm coding a MobileSubstrate plugin (a code insertion platform on jailbroken devices) which will hook into safari and a few other apps.
This plugin will have to display an UIActionSheet. But in order to do that I need to find a view to display it in. so far I'm using showInView:[[UIApplication sharedApplication] keyWindow] but it's not the perfect solution.
Is there any way to find the highest view? highest so UIActionSheet doesn't get covered by a view.
Thanks in advance.