In a root ViewController I am presenting a modal viewcontroller in full screen. This works fine most of the time. The issue I run into is when there is another Modal ViewController open as a form sheet. When this happens, my FullScreen VC is shown BEHIND the formsheet. What can I do about this?
Basically this "DemoViewController
" is functioning as a screensaver for my app.
demoVideoController = new DemoVideoController(this) { View = { Frame = View.Bounds } };
demoVideoController.ModalPresentationStyle = UIModalPresentationStyle.FullScreen;
PresentViewController(demoVideoController, false, null);
Any ideas?