0

I have a split view controller within a navigation controller and I want to put a DejalActivityView over everything it when I'm doing certain operations. Right now I'm using the following code:

 - (void)showActivityView
 {
     UIView *viewToUse = [MSMasterViewController get].splitViewController.navigationController.view;
     [DejalBezelActivityView activityViewForView:viewToUse];
     [DejalActivityView currentActivityView].showNetworkActivityIndicator = YES;
 }

This works in landscape mode, but when in portrait mode with the master view in popover form, the dejal activity view appears behind the popover. Is there a better view to use that will cover the whole screen?

ugly screenshot

Max Strater
  • 540
  • 6
  • 17

1 Answers1

1

Maybe you could use your Window as Superview, and only change relativ Frame positing.

greetings Oli

Oli
  • 11
  • 1